/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(120deg,#eef0f5,#e9e6f5);
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
/* ================= HEADER BASE STYLES ================= */

.header-wrapper {
  position: fixed;
  width: 100%;
  top: 15px; /* Floating effect from top */
  left: 0;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Class added by JS on scroll */
.header-wrapper.hide {
  transform: translateY(-120%);
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border-radius: 18px;
  padding: 10px 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(108, 122, 224, 0.1);
}

/* Logo Styling */
.logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: logoPulse 4s ease-in-out infinite;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(108, 122, 224, 0.6));
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Navigation Links */
nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6C7AE0; /* Your brand primary color */
}

/* Chat Button Styling */
.chat-btn {
  background: linear-gradient(45deg, #6C7AE0, #8e7cfb);
  color: white;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 122, 224, 0.2);
}

.chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 122, 224, 0.3);
}

.btn-logo {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1); /* Turns logo white for button */
}

/* Responsive Header */
@media (max-width: 900px) {
  nav {
    display: none; /* Hide nav on mobile; consider a hamburger menu later */
  }
}

/* ================= HERO ================= *//* ================= HERO SECTION STYLES ================= */

.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 41px;
  line-height: 1.2;
  min-height: 120px; /* Prevents layout jump while typing */
  color: #111;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

/* Color for the typed text */
#typewriter {
  color: #6C7AE0;
}

/* Blinking Cursor */
.cursor {
  font-weight: 200;
  color: #6C7AE0;
  animation: blink 0.8s infinite;
  margin-left: 5px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-left p {
  font-size: 18px;
  color: #666;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* CTA Button (Synced with Meeting Button style) */
.hero-left .meeting-btn {
  padding: 16px 35px;
  background: linear-gradient(45deg, #6C7AE0, #8e7cfb);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(108, 122, 224, 0.2);
}

.hero-left .meeting-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(108, 122, 224, 0.3);
}

.hero-right img {
  width: 550px;
  height: auto;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-box {
    flex-direction: column;
    text-align: center;
  }
  .hero-left h1 { font-size: 36px; min-height: auto; }
  .hero-left p { margin: 0 auto 30px; }
  .hero-right img { width: 100%; max-width: 500px; }
}




/* ================= SERVICES ANIMATION STYLES ================= */

.services {
  margin-bottom: 120px;
}

.services-box {
  background: #f7f7fb;
  border-radius: 40px; 
  padding: 80px 50px;
  position: relative;
  overflow: hidden; /* Important to contain the moving glow */
  border: 1px solid rgba(108, 122, 224, 0.05);
}

/* --- MOVING BACKGROUND GLOW --- */.services-box::before {
	content: "";
	position: absolute;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(63, 39, 232, 0.18), transparent 70%);
	filter: blur(60px);
	pointer-events: none;
	z-index: 0;
	top: -10%;
	left: -10%;
	animation: moveGlow 12s linear infinite;
}


@keyframes moveGlow {
  0% { top: -10%; left: -10%; }
  25% { top: 10%; left: 70%; }
  50% { top: 70%; left: 60%; }
  75% { top: 60%; left: -5%; }
  100% { top: -10%; left: -10%; }
}

/* --- TITLE & LOOPING UNDERLINE --- */
.services-title {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-title h2 {
  font-size: 52px; /* Standardized Heading */
  color: #6C7AE0; /* Brand Blue */
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
}

.title-underline {
  height: 4px;
  background: linear-gradient(90deg, #6C7AE0, #8e7cfb);
  border-radius: 10px;
  
  /* Continuous Loop Animation */
  animation: underlineLoop 3s ease-in-out infinite;
}

@keyframes underlineLoop {
  0%, 100% { width: 60px; opacity: 0.7; }
  50% { width: 140px; opacity: 1; }
}

/* --- GRID & ITEMS (REMAINS CONSISTENT) --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
  position: relative;
  z-index: 1;
}

.service-item {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateX(10px);
}

.icon {
  width: 50px;
  height: 50px;
  background: #ecebff;
  border-radius: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(108, 122, 224, 0.1);
}

.service-content h4 {
  font-size: 22px;
  color: #111;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.services-bottom {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/* Responsive Scaling */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-title h2 { font-size: 38px; }
}
/* ================= MARKETING SECTION ================= */
.marketing {
  margin-bottom: 120px;
}

/* Increase height + better spacing */
.marketing-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7fb;
  border-radius: 30px;
  padding: 60px 50px;   /* 🔥 increased padding */
  min-height: 420px;    /* 🔥 control height */
  gap: 50px;
}

/* LEFT IMAGE */
.marketing-left img {
  width: 340px;
  border-radius: 20px;
}

/* RIGHT CONTENT */
.marketing-right {
  max-width: 520px;
}

/* Badge */
.badge {
  display: inline-block;
  background: #ecebff;
  color: #6c5ce7;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* Heading */
.marketing-right h2 {
  font-size: 38px;
  color: #6c7ae0;
  margin-bottom: 15px;
}

/* Paragraph */
.marketing-right p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ================= BUTTONS ================= */
.marketing-buttons {
  display: flex;
  gap: 12px;
}

.marketing-buttons button,
.marketing-buttons a {
  background: #f1f1f5;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  color: #333 !important; /* FORCE DARK TEXT over light background */
}

/* Hover effect */
.marketing-buttons button:hover,
.marketing-buttons a:hover {
  background: #e4e4f5;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .marketing-box {
    flex-direction: column;
    text-align: center;
  }

  .marketing-buttons {
    justify-content: center;
  }
}

/* =======================================================
   REUSABLE SECTION (CREATIVE + SOCIAL MEDIA)
   Same base as marketing but cleaner + consistent
======================================================= */

/* Section spacing */
.marketing {
  margin-bottom: 120px;
}

/* Main container box */
.marketing-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7fb;
  border-radius: 30px;
  padding: 60px 50px;
  min-height: 420px;
  gap: 50px;
}

/* Alternate layout (TEXT LEFT, IMAGE RIGHT) */
.marketing-box.reverse {
  flex-direction: row-reverse;
}

/* IMAGE SIDE */
.marketing-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.marketing-left img {
  width: 340px;
  border-radius: 20px;
  object-fit: cover;
}

/* TEXT SIDE */
.marketing-right {
  flex: 1;
  max-width: 520px;
}

/* Badge */
.badge {
  display: inline-block;
  background: #ecebff;
  color: #6c5ce7;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Heading */
.marketing-right h2 {
  font-size: 38px;
  color: #6c7ae0;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Paragraph */
.marketing-right p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

/* BUTTON GROUP */
.marketing-buttons {
  display: flex;
  gap: 12px;
}

/* Buttons */
.marketing-buttons button,
.marketing-buttons a {
  background: #f1f1f5;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #333 !important; /* FORCE DARK TEXT over light background */
}

/* Hover effect */
.marketing-buttons button:hover,
.marketing-buttons a:hover {
  background: #e4e4f5;
  transform: translateY(-2px);
}

/* Optional: Slight variation between sections */
.marketing:nth-child(even) .marketing-box {
  background: #f3f3fa;
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */

@media (max-width: 900px) {

  /* Stack layout */
  .marketing-box,
  .marketing-box.reverse {
    flex-direction: column;
    text-align: center;
  }

  /* Image full width */
  .marketing-left img {
    width: 100%;
    max-width: 320px;
  }

  /* Center buttons */
  .marketing-buttons {
    justify-content: center;
  }

  /* Text full width */
  .marketing-right {
    max-width: 100%;
  }
}


/* ================= ONBOARDING SECTION ================= */

.onboarding {
  margin-bottom: 120px;
}

.onboarding-card {
  background: #fff;
  border-radius: 40px;
  padding: 60px 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f5;
}

.onboarding-header {
  text-align: center;
  margin-bottom: 50px;
}

.onboarding-header h2 {
  font-size: 48px;
  color: #6c7ae0;
  margin-top: 15px;
}

.onboarding-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* --- STEPPER --- */
.stepper-container {
  flex: 1;
  position: relative;
  max-width: 500px;
}

.step-line {
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 80px;
  width: 1px;
  background: #e0e0f0;
  z-index: 1;
}

.step-item {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Base Number Style */
.step-num {
  width: 45px;
  height: 45px;
  background: #ecebff;
  color: #6c5ce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  transition: all 0.3s ease; /* Smooth color change */
}

/* HOVER EFFECT: Changes color when mouse is over */
.step-item:hover .step-num {
  background: #6c5ce7;
  color: #fff;
  transform: scale(1.1);
}

.step-item:hover .step-info h3 {
  color: #6c5ce7;
}

/* SCROLL ACTIVE EFFECT: Triggered by JavaScript */
.step-item.active .step-num {
  background: #6c5ce7;
  color: #fff;
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.4);
}

.step-info h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.step-info p {
  color: #777;
  line-height: 1.6;
  font-size: 15px;
}

/* --- IMAGE --- */
.onboarding-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.onboarding-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .onboarding-body {
    flex-direction: column;
    text-align: left;
  }
  .onboarding-img {
    justify-content: center;
  }
}

/* ================= COMPARISON SECTION ================= *//* ================= COMPARISON SECTION REFINED ================= */

.comparison {
  margin-bottom: 120px;
}

.comparison-card {
  background: #fff;
  border-radius: 40px;
  padding: 80px 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f5;
  position: relative;
}

/* Header Sync */
.comparison-header {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-header h2 {
  font-size: 52px;
  color: #6C7AE0; /* Standardized Brand Blue */
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.sub-heading {
  font-size: 20px;
  font-weight: 500;
  color: #555;
}

/* Body Layout */
.comparison-body {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.comparison-col {
  flex: 1;
  max-width: 480px;
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Fixed: Left alignment for text */
  transition: all 0.3s ease;
}

/* OTHERS COLUMN (Muted) */
.others {
  background: #fafafc;
  border: 1px solid #f0f0f5;
}

/* BRAND COLUMN (Pop) */
.brand {
  background: #fff;
  border: 2px solid #6C7AE0;
  box-shadow: 0 10px 30px rgba(108, 122, 224, 0.1);
}

/* Column Badges */
.col-badge {
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.others .col-badge {
  background: #eee;
  color: #888;
}

.brand .col-badge {
  background: linear-gradient(45deg, #6C7AE0, #8e7cfb);
  color: white;
}

/* List Styling */
.comparison-list {
  list-style: none;
  width: 100%;
  padding: 0;
}

.list-item {
  display: flex;
  align-items: flex-start; /* Aligns icon with the first line of text */
  gap: 18px;
  margin-bottom: 22px;
}

/* Icon Circles */
.icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px; /* Centers icon visually with text line */
}

.minus {
  background: #f0f0f5;
  color: #999;
}

.check {
  background: #6C7AE0; /* Using brand blue */
  color: #fff;
}

/* Text Polish */
.list-item p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.others .list-item p {
  color: #888;
}

.brand .list-item p {
  color: #222;
  font-weight: 500;
}

/* Footer Section */
.comparison-footer {
  text-align: center;
  margin-top: 50px;
}

.footer-box {
  display: inline-block;
  background: #f8f9ff;
  padding: 18px 40px;
  border-radius: 20px;
  font-size: 16px;
  color: #555;
  border: 1px solid rgba(108, 122, 224, 0.1);
}

.footer-box a {
  color: #6C7AE0;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(108, 122, 224, 0.2);
  transition: all 0.3s;
}

.footer-box a:hover {
  border-bottom-color: #6C7AE0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .comparison-body {
    flex-direction: column;
    align-items: center;
  }
  .comparison-col {
    width: 100%;
    max-width: 100%;
  }
}




/* ================= REVIEWS SECTION ================= */

/* ================= REVIEWS SLIDER STYLES ================= */

/* ================= REVIEWS SECTION (BRAND ALIGNED) ================= */

.reviews { margin-bottom: 120px; }

.reviews-card-main {
  background: #fff;
  border-radius: 40px; /* Standard card radius */
  padding: 60px 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f5;
  overflow: hidden;
}
.reviews-header{
  text-align: center;
  margin-bottom: 30px;
  
}

/* Header Typography Sync */
.reviews-header h2 {
  font-size: 52px;
  color: #6C7AE0; /* Standardized Brand Color */
  margin: 15px 0 10px;
  font-family: "Poppins", sans-serif;
}

.reviews-header .sub-heading {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0;
}

/* Slider Track Logic */
.reviews-slider {
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  gap: 30px;
}

/* Review Item Styling */
.review-item {
  min-width: calc(33.333% - 20px); /* 3 visible at once */
  background: #fff;
  border: 1px solid #f5f5f7;
  border-radius: 24px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.stars {
  color: #2ecc71; /* Success Green */
  font-size: 20px;
  margin-bottom: 20px;
}

.review-text {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

/* Meta Data Layout */
.reviewer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ecebff;
}

.reviewer-info h4 {
  font-size: 17px;
  color: #111;
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 13px;
  color: #999;
}

.quote-icon {
  font-size: 40px;
  color: #6c7ae0;
  opacity: 0.2;
}

/* Navigation Dots */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #eee;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #6c7ae0;
  width: 25px;
  border-radius: 20px;
}

/* Responsive Scaling */
@media (max-width: 1000px) {
  .review-item { min-width: calc(50% - 15px); }
}
@media (max-width: 650px) {
  .review-item { min-width: 100%; }
}


/* ================= CLIENTS LOGO CAROUSEL ================= */

.clients {
  margin-bottom: 80px;
  overflow: hidden;
  margin-top: -96px;
}

.clients-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid #f5f5f7;
  position: relative;
}

/* Container for the slider */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* The moving track */
.logo-track {
  display: flex;
  width: calc(200px * 16); /* Based on (logo width + gap) * total items */
  animation: scrollLeftToRight 30s linear infinite;
}

/* Individual Logo Cards (based on f12.PNG) */
.logo-item {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  padding: 20px;
  /* Soft shadow for that premium "card" look */
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Slightly desaturate to keep look clean, can remove if you want full color */
  filter: grayscale(20%);
}

/* Seamless Loop Animation: Left to Right */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(calc(-200px * 8)); /* Start from the halfway point */
  }
  100% {
    transform: translateX(0); /* Move back to zero */
  }
}

/* Optional: Fade edges for smoother look */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Responsive */
@media (max-width: 768px) {
  .logo-item {
    width: 120px;
    height: 120px;
  }
  .logo-track {
    width: calc(160px * 16);
  }
}





/* ================= FAQ SECTION STYLES ================= */

.faq {
  margin-bottom: 120px;
}.faq-card {
  background: #fff;
  border-radius: 40px;
  /* Match padding of Onboarding/Comparison/Reviews */
  padding: 60px 50px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f5;
  /* Removed the 1000px max-width to let .container (1200px) handle it */
  width: 100%; 
}

/* Header & Animated Boy */
.faq-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
}

.faq-header h2 {
  font-size: 58px;
  color: #6c7ae0;
  font-weight: 600;
}

.floating-boy {
  width: 60px;
  animation: floatUpDown 3s ease-in-out infinite;
}

/* Boy Animation */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Accordion List */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 25px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

/* Question Styling */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question span {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.faq-item:hover .faq-question span {
  color: #6c7ae0;
}

/* Plus/Minus Icon using CSS */
.faq-icon {
  width: 32px;
  height: 32px;
  background: #f8f9ff;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #999;
  transition: all 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical line (makes it a plus) */
.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* When Active: Icon transforms to Minus */
.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon {
  background: #fff;
}

/* Answer Slide-Down Effect */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0, 1, 0, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  transition: all 0.4s cubic-bezier(1, 0, 1, 0);
  opacity: 1;
  padding-top: 20px;
}

.faq-answer p {
  color: #777;
  line-height: 1.7;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-card { padding: 40px 25px; }
  .faq-header h2 { font-size: 40px; }
  .faq-question span { font-size: 17px; }
}

/* ================= CONTACT SECTION STYLES ================= */

.contact {
  margin-bottom: 120px;
}

.contact-card {
  background: #fff;
  border-radius: 40px;
  padding: 60px 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f5;
  text-align: center;
}

/* Typography sync */
.contact-header h2 {
  font-size: 52px;
  color: #6c7ae0;
  margin: 15px 0 10px;
}

.contact-header .sub-heading {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
  background: #fcfcff;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f1f5;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.08);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon img {
  width: 30px;
  height: 30px;
}

.contact-info h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.contact-info a {
  font-size: 15px;
  color: #6c5ce7;
  text-decoration: none;
  font-weight: 500;
}

/* Meeting Button Styling */
.contact-footer {
  display: flex;
  justify-content: center;
}

.meeting-btn {
  padding: 18px 40px;
  background: linear-gradient(45deg, #6c5ce7, #8e7cfb);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.meeting-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
}

/* Responsive adjustment */
@media (max-width: 900px) {
  .contact-header h2 {
    font-size: 40px;
  }
  .contact-card {
    padding: 40px 25px;
  }
}






/* ================= FOOTER STYLES ================= */

.footer {
  background: #12121e; /* Deep premium navy/black */
  padding: 80px 0 30px;
  width: 100%;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Brand Area */
.footer-brand {
  max-width: 400px;
}

.footer-logo {
  width: 140px; /* Adjust based on your image size */
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

/* ================= LITE ANIMATED FOOTER ================= */
/* ================= PREMIUM FOOTER STYLES ================= */

.footer-premium {
  position: relative;
  background: #fdfdff;
  padding: 100px 0 40px;
  overflow: hidden;
  border-top: 1px solid rgba(108, 122, 224, 0.1);
  /* Matching the website's card style */
  border-radius: 60px 60px 0 0; 
  box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
}

/* Moving Background Glow (Matches Services Section) */
.footer-premium::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 122, 224, 0.1), transparent 70%);
  filter: blur(50px);
  animation: footerGlow 15s infinite alternate;
  z-index: 0;
}

@keyframes footerGlow {
  from { transform: translate(0, 0); }
  to { transform: translate(-100px, 50px); }
}

.footer-wrap {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Brand Area */
.footer-logo {
  width: 190px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
}

.footer-tagline {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-tagline span {
  color: #6C7AE0;
  font-weight: 700;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C7AE0;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #6C7AE0;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(108, 122, 224, 0.2);
}

/* Columns & Links */
.footer-col h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #6C7AE0;
  padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #f0f0f5;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

.brand-col {
  margin-top: -30px; /* Pull up columns to overlap with the moving glow for a more integrated look */
}

.footer-bottom b {
  color: #6C7AE0;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials { justify-content: center; }
  .footer-premium { border-radius: 40px 40px 0 0; }
}




/* ================= TEAM SECTION STYLES ================= */

.team { margin-bottom: 120px; }

.team-card {
  background: #fff;
  border-radius: 40px;
  padding: 60px 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f5;
  text-align: center;
}

/* Header Alignment */
.team-header h2 {
  font-size: 52px;
  color: #6C7AE0;
  margin: 15px 0 10px;
  font-family: "Poppins", sans-serif;
}

.team-header .sub-heading {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

/* Grid Layout (4 Columns) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 30px; /* Vertical gap 50px, Horizontal 30px */
  margin-top: 50px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

/* --- THE CIRCLE BORDER & GAP --- */
.member-img-wrapper {
  margin-bottom: 20px;
}

.animated-border {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 2px; /* 2px clear gap between border and image */
  border: 2px solid #6C7AE0; /* The 2px outer border */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Animation Logic */
  animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
  0% { border-color: #6C7AE0; box-shadow: 0 0 5px rgba(108, 122, 224, 0.2); }
  33% { border-color: #8e7cfb; box-shadow: 0 0 15px rgba(142, 124, 251, 0.4); }
  66% { border-color: #2DD4BF; box-shadow: 0 0 5px rgba(45, 212, 191, 0.2); }
  100% { border-color: #6C7AE0; box-shadow: 0 0 5px rgba(108, 122, 224, 0.2); }
}

.animated-border img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* --- NAME & SPECIALIST INFO --- */
.member-info h4 {
  font-size: 20px;
  color: #111;
  margin-bottom: 5px;
  font-weight: 600;
}

.member-info p {
  font-size: 14px;
  color: #777;
}

.member-info p span {
  color: #6C7AE0;
  font-weight: 600;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); } /* 2 per row on tablets */
}

/* Desktop default hiding for mobile elements */
.hamburger { display: none; }
.mobile-menu { display: none; }
.scroll-to-top { display: none; }

@media (max-width: 600px) {
  /* Hambruger Logic */
  .hamburger { display: block; margin-left: 20px; }
  .desktop-nav, .desktop-chat { display: none !important; }
  header { padding: 10px 20px !important; display: flex; justify-content: space-between; align-items: center; }
  
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 3D Transform Initial State */
    transform: perspective(800px) rotateY(-20deg) translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .mobile-menu.open {
    transform: perspective(800px) rotateY(0) translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    color: #6C7AE0;
    cursor: pointer;
  }
  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
  }
  .mobile-links a {
    text-decoration: none;
    font-size: 24px;
    color: #333;
    font-weight: 600;
  }
  .mobile-chat-btn {
    background: linear-gradient(45deg, #6C7AE0, #8e7cfb);
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
  }

  /* Team Grid Logic (Two members side by side) */
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
  .team-member .animated-border { width: 90px !important; height: 90px !important; }
  .team-member h4 { font-size: 15px !important; }
  .team-member p { font-size: 12px !important; }

  /* Contact Grid Logic */
  .contact-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
  .contact-item:first-child {
    grid-column: 1 / -1; /* WhatsApp spans full width */
  }
  .contact-item { padding: 20px 10px !important; }
  .contact-icon { width: 40px !important; height: 40px !important; }
  .contact-info h4 { font-size: 14px !important; }
  .contact-info a { font-size: 13px !important; word-break: break-all; }

  /* Footer Logic */
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }
  .footer-main .brand-col {
    grid-column: 1 / -1 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-main .footer-col:nth-child(3) {
    display: none !important;
  }
  .footer-main .footer-col:last-child {
    grid-column: auto !important;
  }

  /* Scroll To Top Button */
  .scroll-to-top {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #6C7AE0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(108, 122, 224, 0.4);
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  .scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
/* ================= HIRING SECTION STYLES ================= */
.hiring { margin-bottom: 120px; }
.hiring-card {
  background: linear-gradient(135deg, #6C7AE0, #8e7cfb);
  border-radius: 40px;
  padding: 80px 50px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(108, 122, 224, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hiring-card .glow-effect {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(60px);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: 1;
  animation: pulseWeHiring 6s infinite alternate;
}
@keyframes pulseWeHiring {
  from { transform: scale(1); }
  to { transform: scale(1.2) translate(20px, 20px); }
}
.hiring-header {
  position: relative;
  z-index: 2;
}
.white-badge {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
}
.hiring-header h2 {
  font-size: 52px;
  color: #fff;
  margin: 15px 0 10px;
  font-weight: 600;
}
.hiring-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.6;
}
.hiring-btn {
  background: #fff;
  color: #6C7AE0;
  padding: 18px 45px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.hiring-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: #8e7cfb;
}

/* ================= GLOBAL MOBILE RESPONSIVENESS & UI POLISH (<= 600px) ================= */
@media (max-width: 600px) {
  /* Typography Scaling */
  .hero-left h1 { font-size: 30px !important; min-height: auto !important; }
  .services-title h2,
  .marketing-right h2,
  .onboarding-header h2,
  .comparison-header h2,
  .reviews-header h2,
  .faq-header h2,
  .contact-header h2,
  .hiring-header h2,
  .team-header h2 { font-size: 28px !important; line-height: 1.3 !important; }
  
  .sub-heading { font-size: 15px !important; line-height: 1.5 !important; }
  
  .hero-left p, 
  .service-content p, 
  .marketing-right p, 
  .step-info p, 
  .list-item p, 
  .review-text, 
  .faq-answer p,
  .hiring-header p {
    font-size: 14px !important;
  }
  
  /* Layout & Padding Adjustments */
  .services-box,
  .marketing-box,
  .onboarding-card,
  .comparison-card,
  .reviews-card-main,
  .faq-card,
  .contact-card,
  .team-card,
  .hiring-card {
    padding: 30px 20px !important;
    gap: 30px !important;
  }
  
  /* Header Adjustments */
  header { padding: 10px 20px !important; }
  .logo img { height: 36px !important; }
  .chat-btn { padding: 8px 16px !important; font-size: 13px !important; }

  /* Hero Adjustments */
  .hero { padding-top: 120px !important; padding-bottom: 60px !important; }
  .hero-left .meeting-btn, .services-bottom .meeting-btn { 
    padding: 14px 28px !important; 
    font-size: 15px !important; 
    display: inline-flex !important; 
    text-align: center;
    width: auto !important;
  }

  /* Element Alignments */
  .marketing-left img, .hero-right img, .onboarding-img img { 
    max-width: 100% !important; 
    border-radius: 12px !important; 
  }
  .floating-boy { width: 45px !important; }
  
  /* Additional UI Polish */
  .marketing-buttons { 
    flex-wrap: wrap !important; 
    justify-content: center !important; 
    gap: 12px !important; 
  }
  .marketing-buttons button, .marketing-buttons a { 
    flex: none !important; 
    text-align: center !important; 
    min-width: 0 !important;
    padding: 10px 22px !important;
    margin-bottom: 4px;
    width: auto !important;
    display: inline-block !important;
  }
  
  /* Icons & Avatar Downsizing */
  .icon { width: 40px !important; height: 40px !important; }
  .animated-border { width: 110px !important; height: 110px !important; }
  .reviewer-info img { width: 40px !important; height: 40px !important; }
  
  /* Improve Spacing inside specific elements */
  .step-item { flex-direction: column !important; gap: 10px !important; align-items: flex-start !important; }
  .step-line { left: 18px !important; }
  .step-num { width: 36px !important; height: 36px !important; font-size: 14px !important; }
}

/* Base Animation that runs once they appear (Added for a professional touch) */
@keyframes fadeUp {
  0% { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.service-item, .marketing-box, .contact-item, .team-member, .review-item, .hiring-card {
  animation: fadeUp 0.8s ease-out forwards;
}