body {
  background: #050510;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Helvetica Neue', sans-serif;
}


/* ==============================
   GLOBAL RESPONSIVE SAFETY
============================== */
img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

section {
  overflow-x: hidden;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
}

.container {
  max-width: 1200px;
}

p{color: #999;}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("../images/banner_img.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* HERO CONTENT */
.hero-content {
  margin-top: 200px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-content p {
  max-width: 600px;
  margin: 15px auto;
  font-size: 20px;
}
/*
.badge-glow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}*/

/* CENTER IMAGE */
.hero-preview-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(139, 92, 246, 0.45));
}

/* ===== NAVBAR EXACT FRAMER STYLE ===== */
.custom-navbar {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*.nav-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 6px 10px;
}
*/
.nav-pills {
  background: transparent;
  padding: 0;
  gap: 6px;
}


.nav-pills .nav-link.active {
  background: none;
  opacity: 1;
  border: 1px solid #ffffff45;
}

.btn-demo {
  padding: 15px 22px;
  font-size: 18px;
  font-weight: 500;
}

.nav-pills .nav-link:hover {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(30px);
}

.mobile-menu .nav-link {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.navbar-toggler {
  border: none;
  background: #fff;
  font-size: 22px;
}

/* ===== FRAMER LOGO IMAGE STYLE ===== */
.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}


/* NAVBAR */
.custom-navbar {
  margin-top: 25px;
}

/* GLASS CAPSULE */
.nav-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
}

/* NAV LINKS */
.nav-pills {
  gap: 6px;
}

.nav-pills .nav-link {
  color: #fff !important;
  border-radius: 40px;
  padding: 8px 20px !important;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  opacity: .9;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  opacity: 1;
}

/* BUTTON */
.btn-gradient {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  color: #fff;
  border-radius: 50px;
  padding: 5px 5px;
  font-size: 13px;
}

/* TOGGLER */
.navbar-toggler {
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
}

.badge-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 10px 15px;
  border-radius: 50px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* LEFT & RIGHT LINES */
.badge-glow::before,
.badge-glow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.8),
      transparent);
}

/* RIGHT LINE REVERSE */
.badge-glow::after {
  transform: rotate(180deg);
}

.btn-animated {
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  color: #fff;
  text-transform: uppercase;
}

/* spans */
.btn-animated span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s ease;
  font-weight: 600;
}

/* visible text */
.btn-animated .btn__visible {
  padding: 10px 40px;
}

/* invisible text */
.btn-animated .btn__invisible {
  position: absolute;
  left: 0;
  top: -100%;
  padding: 14px 42px;
}

/* hover effects */
.btn-animated:hover {
  animation: pulsate 1s infinite;
}

.btn-animated:hover .btn__invisible {
  top: 3px;
}

.btn-animated:hover .btn__visible {
  transform: translateY(100%);
}

/* pulsate animation */
@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: none;
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: transparent;
  /* initial */
}

.hero {
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

/* heading */
.hero h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 20px;
}

/* glass card */
.glass-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(14px);
  height: 100%;
}

/* step icon */
.step-icon {
  margin-bottom: 20px;
}

/* text */
.step-title {
  font-weight: 600;
  font-size: 20px;
}

.step-desc {
  font-size: 16px;
  margin-top: 6px;
}

.ai-features-section {
  padding: 50px 0;
  color: #fff;
}


.feature-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(167, 139, 250, .15);
  color: #a78bfa;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}


.feature-title {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.2;
}


.feature-subtitle {
  color: #9ca3af;
  font-size: 16px;
  margin-top: 15px;
}


.btn-purple {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  border-radius: 30px;
  padding: 5px 10px;
  color: #fff;
}


.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: .3s ease;
}


.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, .25);
}


.glass-card h5,
.glass-card h4 {
  margin: 15px 0px;
}


.glass-card p {
  font-size: 16px;
  color: #9ca3af;
}


.center-card {
  text-align: center;
}


.ai-orb {
  width: 90px;
}

.social-tools-section {
  padding: 50px 0;
  color: #fff;
  position: relative;
}


.social-tools-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><circle cx="2" cy="2" r="1" fill="%23a855f7" opacity="0.3"/></svg>');
  opacity: .15;
  pointer-events: none;
}


.section-subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  color: #9ca3af;
  font-size: 20px;
  text-align: center;
}


.tool-icon {
  font-size: 28px;
  color: #a855f7;
  margin-bottom: 16px;
}

.testimonial-section {
  padding: 50px 0;
  color: #fff;
}


.testimonial-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
}


.testimonial-subtitle {
  margin-top: 16px;
  color: #9ca3af;
  font-size: 20px;
}


/*.testimonial-card {
  padding: 28px 26px 30px;
  height: 100%;
}
*/

.testimonial-card p {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}


.testimonial-grid .col-lg-4 {
  position: relative;
}


.testimonial-grid .col-lg-4:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #7c3aed, transparent);
}


.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
}


.user-info img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}


.user-info h6 {
  margin: 0;
  font-size: 16px;
}


.user-info span {
  font-size: 14px;
  color: #9ca3af;
}


.faq-section {
  padding: 50px 0;
}

.badge-faq {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.faq-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faq-text {
  max-width: 420px;
  margin-bottom: 30px;
  font-size: 20px;
}
.accordion-item {
  background-color: #03030b;
  border-radius: 12px !important;
  margin-bottom: 14px;
  overflow: hidden;
  border-color: #ffffff1a;
  border: 1px solid #ffffff1a;
}

.accordion-button {
  background-color: transparent;
  color: #fff;
  box-shadow: none;
  font-size: 20px;
  padding: 20px 20px;    border: 1px solid #1b1b1b;
}

.accordion-button:not(.collapsed) {
  background-color:#03030a;
  color: #fff;    border-bottom: 1px solid #03030a;    box-shadow: none;
}
.accordion-button:focus{
    z-index: 3;
    border-color:#03030a;
    outline: 0;
}
.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  color: #b6b7ba;
  font-size: 16px;
}


/* ===== STAT CARDS ===== */
/* ===== STATS CARD ===== */
.stats-card {
  height: 100%;
  padding: 32px 28px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #14172a, #0b0e1c);

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 20px 60px rgba(0, 0, 0, .6);

  transition: .35s ease;
}

/* subtle glow */
.stats-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, #6f3cff55, transparent);
  opacity: 0;
  transition: .35s ease;
}

/* hover effect */
.stats-card:hover {
  transform: translateY(-6px);
}

.stats-card:hover::before {
  opacity: 1;
}

/* ===== VALUE ===== */
.stats-value {
  font-size: 38px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: .5px;
}

/* ===== TITLE ===== */
.stats-title {
  margin-top: 8px;
  font-size: 16px;
}

/* ===== DESCRIPTION ===== */
.stats-desc {
  margin-top: 60px;
  font-size: 16px;
  line-height: 1.7;
}


/* ===== GENERATED MONTHLY SECTION ===== */
.Generated_Monthly {
  padding: 50px 0 80px;
}

/* ===== CTA BOX ===== */
.cta-box {
  margin-top: 90px;
  padding: 90px 20px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    url("../images/Experience_images.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* ===== CTA CONTENT ===== */
.cta-title {
  font-size: 48px;
  font-weight:500;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.cta-text {
  max-width: 800px;
  margin: 18px auto 40px;
  font-size: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-size: 22px;
  font-weight: 600;
}

.footer-title {
  color:#999;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  opacity: .85;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-divider {
  margin: 40px 0 20px;
  border-color: rgba(255, 255, 255, .1);
}

.footer-copy {
  text-align: center;
  font-size: 16px;
  opacity: .8;
}


.footer-section{padding: 80px 0px 30px;}



@media (max-width: 1200px) {

  .hero-content h1 {
    font-size: 58px;
  }

  .section-title,
  .testimonial-title {
    font-size: 48px;
  }

  .feature-title {
    font-size: 40px;
  }

  .cta-title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {

  /* HERO */
  .hero-content {
    margin-top: 150px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 17px;
  }

  /* HOW IT WORKS */
  .hero h1 {
    font-size: 38px;
  }

  /* FEATURES */
  .feature-title {
    font-size: 36px;
  }

  /* SOCIAL TOOLS */
  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  /* TESTIMONIAL */
  .testimonial-title {
    font-size: 40px;
  }

  /* FAQ */
  .faq-title {
    font-size: 38px;
  }

  /* STATS */
  .stats-value {
    font-size: 32px;
  }

  /* CTA */
  .cta-box {
    padding: 70px 20px;
  }

  .cta-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {

  /* HERO */
  .hero-content {
    margin-top: 60px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
  }

  /* BUTTONS */
  .btn-animated span {
    font-size: 13px;
  }

  /* HOW IT WORKS */
  .hero h1 {
    font-size: 25px;
  }

  .hero p {
    font-size: 15px;
  }

  /* FEATURES */
  .feature-title {
    font-size: 25px;
  }

  /* SOCIAL */
  .section-title {
    font-size:25px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* TESTIMONIAL */
  .testimonial-title {
    font-size: 25px;
  }

  /* FAQ */
  .faq-title {
    font-size: 25px;
  }

  /* FOOTER */
  .footer-logo {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-section {
    text-align: center;
  }
}
@media (max-width: 576px) {

  /* HERO */
  .hero-content h1 {
    font-size: 26px;
  }

  .badge-glow {
    font-size: 10px;
    padding: 6px 12px;
  }

  /* CARDS */
  .glass-card,
  .glass-box,
  .testimonial-card,
  .stats-card {
    padding: 20px;
  }

  /* STATS */
  .stats-value {
    font-size: 28px;
  }

  /* CTA */
  .cta-title {
    font-size: 25px;
  }

  .cta-text {
    font-size: 15px;
  }
}
/* ===============================
   MOBILE NAVBAR FINAL FIX
================================ */
@media (max-width: 991px) {

  /* glass bar sirf top row ke liye */
  .nav-glass {
    flex-wrap: wrap;
    padding: 10px 14px;
  }

  /* logo + toggler ek row me */
  .logo-wrap {
    flex: 1;
  }

  .navbar-toggler {
    order: 2;
  }

  /* collapse area full width neeche */
  .navbar-collapse {
    width: 100%;
    background: rgba(20, 10, 40, 0.85);
    backdrop-filter: blur(25px);
    border-radius: 18px;
    padding: 16px;
    margin-top: 14px;
  }

  /* menu list */
  .nav-pills {
    flex-direction: column;
    gap: 10px;
  }

  .nav-pills .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 15px;
  }

  /* mobile demo button */
  .nav-pills .btn {
    padding: 14px;
    font-size: 16px;
    border-radius: 30px;
  }
}

/* ===============================
   NAVBAR TOP FIX (MOBILE)
================================ */
@media (max-width: 991px) {

  /* navbar always on top */
  .custom-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  /* top bar only (logo + hamburger) */
  .nav-glass {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  /* prevent bar from moving */
  .navbar-brand {
    margin-bottom: 0;
  }

  /* collapse menu detached from bar */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(20, 10, 40, 0.92);
    backdrop-filter: blur(28px);
    border-radius: 22px;
    padding: 18px;
    margin-top: 10px;
  }

  /* menu items */
  .nav-pills {
    flex-direction: column;
    gap: 12px;
  }

  .nav-pills .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 15px;
  }
}


.scroll-top-btn{
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all .3s ease;
}

.scroll-top-btn:hover{
  background:linear-gradient(135deg, #a855f7, #6366f1);
  transform: translateY(-3px);
}

/* Initial state: hidden and slightly scaled down */
.zoom-item {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
}

/* When visible */
.zoom-item.visible {
  opacity: 1;
  transform: scale(1);
}




.career-section{
  padding:230px 0 80px;
}

/* Heading */
.career-heading{
font-size: 70px;
font-weight: 500;
}

/* Card */
.career-card{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:30px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.12);
  text-decoration:none;
  color:#fff;
  transition:.4s;
}

.career-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.6);
  color:#fff;
}

.career-card h5{
  font-size:20px;
  font-weight:600;
  margin-bottom:14px;
}

/* Meta */
.meta{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
}

.meta i{
  font-size:12px;
}

.meta .purple{
  color:#a855f7;
}

.dot{
  width:6px;
  height:6px;
  background:#a855f7;
  border-radius:50%;
}

/* See Details */
.see-btn{
  margin-top:70px;
  align-self:flex-start;
  padding:10px 22px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  font-size:14px;
  transition:.3s;
}

.career-card:hover .see-btn{
  background:rgba(168,85,247,.25);
}

/* Load More */
.load-btn{
  padding:14px 34px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.15);
  transition:.3s;
}

.load-btn:hover{
  background:rgba(168,85,247,.25);
  color:#fff;
}



/* SECTION */
.pricing-section{
  padding:200px 0 20px;
}


/* TITLE */
.pricing-title{
  font-size:70px;
  font-weight:500;
}

/* CARD */
.pricing-card{
  height:100%;
  padding:35px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.12);
  transition:.4s;
}

.pricing-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(0,0,0,.6);
}

/* HEADINGS */
.pricing-card h4{
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
}

.pricing-desc{
  font-size:14px;
  margin-bottom:22px;
}

/* PRICE */
.price{
  font-size:34px;
  font-weight:500;
  margin-bottom:25px;
}

.price span{
  font-size:16px;
}

/* LIST */
.pricing-list{
  list-style:none;
  padding:0;
  margin-bottom:35px;
}

.pricing-list li{
  font-size:14px;
  margin-bottom:14px;
  display:flex;
  gap:10px;
}

.pricing-list i{
  color:#a855f7;
  font-size:14px;
}

/* BUTTON */
.pricing-btn{
  width:100%;
  padding:14px 0;
  border-radius:30px;
  background:linear-gradient(135deg,#7c3aed,#9333ea);
  color:#fff;
  font-weight:500;
  border:none;
}

.pricing-btn:hover{
  color:#fff;
  opacity:.9;
}





/* SECTION */
.blog-section{
   padding:200px 0 20px;
}

/* TITLE */
.blog-title{
  font-size:70px;
  font-weight:500;
}

/* CARD */
.blog-card{
  display:block;
  text-decoration:none;
  color:#fff;
}

.blog-img{
  border-radius:22px;
  overflow:hidden;
  margin-bottom:18px;
}

.blog-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.4s;
}

.blog-card:hover img{
  transform:scale(1.05);
}

.blog-card h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
}

.blog-card p{
  font-size:14px;
  line-height:1.6;
}

/* LOAD MORE */
.blog-load-btn{
  padding:14px 34px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.15);
  transition:.3s;
}

.blog-load-btn:hover{
  background:rgba(168,85,247,.25);
  color:#fff;
}


/* SECTION */
.case-section{
  padding:200px 0 20px;
}



/* TITLE */
.case-title{
  font-size:70px;
  font-weight:500;
  line-height:1.2;
}

/* CARD */
.case-card{
  display:block;
  text-decoration:none;
  color:#fff;
}

.case-img{
  border-radius:24px;
  overflow:hidden;
  margin-bottom:14px;
}

.case-img img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:.4s;
}

.case-card:hover img{
  transform:scale(1.05);
}


/* LOAD MORE */
.case-load-btn{
  padding:14px 34px;
  border-radius:30px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.15);
  transition:.3s;
}

.case-load-btn:hover{
  background:rgba(168,85,247,.25);
  color:#fff;
}



/* ===== SECTION ===== */
.contact-section{
  padding:200px 0 20px;
}

/* HEADING */
.section-title{
  font-size:70px;
  font-weight:500;
  margin-bottom:50px;
}

/* GLASS CARD */
.glass-card{
  height:100%;
  padding:35px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

/* LEFT TEXT */
.glass-card p{
  font-size:16px;
  line-height:1.7;
}

/* LIST */
.feature-list{
  list-style:none;
  padding:0;
  margin-top:30px;
}

.feature-list i{
  color:#a855f7;
}

/* CONTACT INFO */
.contact-info{
  margin-top:35px;
  font-size:14px;
}

.contact-info div{
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* FORM */
.form-label{
  font-size:13px;
}

.form-control{
  background:#0c1022;
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
  border-radius:12px;
  padding:12px 14px;
}

.form-control::placeholder{
  color:#6b7280;
}

.form-control:focus{
  background:#0c1022;
  color:#fff;
  border-color:#a855f7;
  box-shadow:none;
}


/* ===== SECTION ===== */
.policy-section{
  padding:230px 0 80px;
}

/* TITLE */
.policy-title{
  text-align:center;
  font-size:70px;
  font-weight:500;
  margin-bottom:40px;
  color:#ffffff;
}

/* CONTENT */
.policy-content{
  max-width:880px;
  margin:auto;
  font-size:15px;
  line-height:1.8;
}

/* HEADINGS */
.policy-content h5{
  font-size:16px;
  font-weight:700;
  color:#ffffff;
  margin-top:26px;
  margin-bottom:6px;
}

/* LIST */
.policy-content ul{
  padding-left:18px;
  margin-top:6px;
}

.policy-content ul li{
  margin-bottom:6px;
}

/* LINKS */
.policy-content a{
  color:#a855f7;
  text-decoration:none;
}

.policy-content a:hover{
  text-decoration:underline;
}


/* ===== SECTION ===== */
.terms-section{
  padding:230px 0 80px;
}

/* TITLE */
.terms-title{
  text-align:center;
  font-size:70px;
  font-weight:500;
  margin-bottom:40px;
  color:#ffffff;
}

/* CONTENT */
.terms-content{
  max-width:900px;
  margin:auto;
  font-size:15px;
  line-height:1.8;
}

/* SUB HEADINGS */
.terms-content h5{
  font-size:16px;
  font-weight:700;
  color:#ffffff;
  margin-top:26px;
  margin-bottom:6px;
}

/* LINKS */
.terms-content a{
  color:#a855f7;
  text-decoration:none;
}

.terms-content a:hover{
  text-decoration:underline;
}


/* ===== SECTION ===== */
.privacy-section{
  padding:230px 0 80px;
}

/* TITLE */
.privacy-title{
  text-align:center;
  font-size:70px;
  font-weight:500;
  margin-bottom:40px;
  color:#ffffff;
}

/* CONTENT */
.privacy-content{
  max-width:900px;
  margin:auto;
  font-size:15px;
  line-height:1.8;
}

/* SUB HEADINGS */
.privacy-content h5{
  font-size:16px;
  font-weight:700;
  color:#ffffff;
  margin-top:26px;
  margin-bottom:6px;
}

/* LIST */
.privacy-content ul{
  padding-left:18px;
  margin-top:6px;
}

.privacy-content ul li{
  margin-bottom:6px;
}

/* LINKS */
.privacy-content a{
  color:#a855f7;
  text-decoration:none;
}

.privacy-content a:hover{
  text-decoration:underline;
}



/* ===== SECTION ===== */
.job-section{
  padding:230px 0 80px;
}

/* HEADER */
.job-badges span{
  display:inline-block;
  padding:6px 16px;
  font-size:12px;
  border-radius:50px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  margin-right:10px;
}

.job-title{
  font-size:70px;
  font-weight:500;
  margin:25px 0 15px;
  color:#ffffff;
}

.job-content{
  max-width:900px;
  margin:auto;
  font-size:15px;
  line-height:1.8;
}

/* HEADINGS */
.job-content h5{
  font-size:17px;
  font-weight:700;
  color:#ffffff;
  margin-top:30px;
  margin-bottom:10px;
}

/* LIST */
.job-content ul{
  padding-left:18px;
}

.job-content ul li{
  margin-bottom:8px;
}







/* ===== BLOG DARK ===== */
.blog-dark {
  padding: 200px 0 20px;
}


/* Text */
.blog-dark p,
.blog-dark li {
  line-height: 1.75;
  font-size: 17px;
  margin-bottom: 12px;
}

.blog-dark h3 {
  color: #ffffff;
  font-weight: 500;
  margin-top: 50px;
}

/* Image */
.blog-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}

/* Quote */
.quote-box {
  background: linear-gradient(135deg, #1e293b, #020617);
  border-left: 5px solid #a855f7;
  padding: 26px 30px;
  border-radius: 16px;
  font-size: 18px;
  color: #e5e7eb;
}

/* Related title */
.related-title {
  font-weight: 800;
  color: #ffffff;
}

/* Blog Cards */
.blog-card {
  display: block;
  background: #020617;
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  transition: all .4s ease;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(99,102,241,.25);
}

.blog-card h5 {
  color: #ffffff;
  font-weight: 600;
  margin-top: 15px;
}

.blog-card p {
  font-size: 14px;
}

.blog-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

/* Meta */
.blog-dark .small {
  opacity: .85;
}
/* ===== CASE STUDY DARK ===== */
.case-dark {
  padding: 150px 0 20px;
}


/* Hero Image */
.case-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 60px 120px rgba(0,0,0,.75),
    inset 0 0 0 1px rgba(255,255,255,.04);
}

/* Content */
.case-dark h3 {
  color: #ffffff;
  font-weight: 500;
  margin-top: 55px;
}

.case-dark p,
.case-dark li {
  font-size: 17px;
  line-height: 1.8;
}

/* Quote Box */
.quote-box {
  background: linear-gradient(135deg, #111827, #020617);
  border-left: 5px solid #a855f7;
  padding: 28px 32px;
  border-radius: 18px;
  font-size: 18px;
  color: #e5e7eb;
  box-shadow: 0 25px 60px rgba(168,85,247,.25);
}

/* Feature List */
.feature-list {
  padding-left: 20px;
}


/* Stats */
.stat-card {
  background: linear-gradient(180deg, #020617, #020617);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.05);
}

.stat-card h4 {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 50px;
}

.stat-card span {
  font-size: 16px;
}

/* Bottom Case Cards */
.case-card {
  display: block;
  background: #020617;
  border-radius: 22px;
  padding: 18px;
  height: 100%;
  text-decoration: none;
  transition: all .45s ease;
  border: 1px solid rgba(255,255,255,.06);
}

.case-card:hover {
  transform: translateY(-10px);
}

.case-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.case-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #a855f7;
}

.case-card h5 {
color: #ffffff;
font-weight: 600;
margin-top: 5px;
line-height: 1.4;
font-size: 25px;
}

/* Mobile polish */
@media (max-width: 768px) {
  .case-image img {
    border-radius: 16px;
  }

  .case-title {
    font-size: 38px;
  }
}
.behind-dark {
  padding: 170px 0;
  color: #e5e7eb;
}




/* ===== ABOUT DARK ===== */
.about-dark {
  padding:170px 0 15px;
  color: #e5e7eb;
}


/* Title */
.about-title {
  font-size: 70px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Hero Image */
.about-hero-img img {
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}

/* Logos */
.logo-strip span {
  margin: 0 14px;
  color: #94a3b8;
  font-weight: 600;
}

/* Mission */
.about-mission {
  max-width: 800px;
  margin: 40px auto;
  font-size: 25px;
}

/* Stats */
.stats-card {
  background: rgba(255,255,255,.04);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.06);
}
.stats-card h3 {
  color: #fff;
  font-size: 32px;
}

/* Team */
.team-card {
  background: rgba(255,255,255,.04);
  padding: 26px;
  border-radius: 22px;
  text-align: center;
}
.team-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

/* Testimonial */
.testimonial-card {
  background: rgba(255,255,255,.04);
  padding: 48px;
  border-radius: 28px;height: 100%; 
}
.quote-mark {
  font-size: 64px;
  color: #d946ef;
}
.author-role {
  display: block;
  font-size: 13px;
  color: #94a3b8;
}
/* ===== LOGO CAROUSEL ===== */
.logo-carousel {
  margin: 50px auto;
  max-width: 900px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all .3s ease;
}

.logo-item img {
  width: auto !important;
  filter: brightness(0) invert(1);
}

.logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}



@media (max-width: 667px) {
    .section-title {
        font-size: 25px;
    }


