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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --blue-1: #005eff;
  --blue-2: #0078ff;
  --blue-3: #0d5abd;
  --text-dark: #0b1f6a;
  --bg-light: #f6f9ff;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.7);
  --shadow: 0 6px 18px rgba(13, 90, 189, 0.08);
  --radius: 14px;
  --transition: 0.35s ease;
  --blur: 12px;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  padding-top: 68px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(var(--blur));
  background: white;
  /* background: var(--glass); */
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* ===== NAV WRAPPER ===== */
.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo img {
  height: 42px;
  width: auto;
  transition: transform var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ✅ ADVANCED PAGE LINKS */
.nav-item {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  padding: 5px 0;
  transition:
    color 0.35s ease,
    letter-spacing 0.35s ease,
    background-position 0.35s ease;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200%;
  background-position: left;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  transition: width 0.35s ease;
}

.nav-item:hover {
  background-position: right;
  letter-spacing: 0.6px;
}

.nav-item:hover::after {
  width: 100%;
}

/* ===== CTA BUTTON ===== */
.btn-primary {
  background: linear-gradient(90deg, var(--blue-1), var(--blue-2));
  color: #fff !important;
  padding: 7px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 3px 12px rgba(0, 94, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0, 94, 255, 0.4);
}

/* ===== MENU BUTTON ===== */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(13, 90, 189, 0.1);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Animate hamburger → X */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 900px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition);
  }

  .nav.show {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 22px;
  }

  .nav-item {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 9px 22px;
  }
}

/* ===== SMALL DETAILS ===== */
@media (max-width: 500px) {
  .logo img {
    height: 38px;
  }

  .nav-links {
    gap: 18px;
  }
}

/* ===== BASE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7f8fc;
  color: #333;
  overflow-x: hidden;
  /* Prevents sideways scroll */
}

/* ===== FIX FOR HEADER ===== */
header,
nav,
.navbar {
  color: #fff;
  padding: 20px 5%;
  position: relative;
  z-index: 1000;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 5%;
  text-align: center;
  background: #f7f8fc;
}

/* === HEADING SECTION === */
.services-header {
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

.underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4b56e9, #00c2ff);
  margin: 10px auto 20px;
  border-radius: 2px;
}

.services-header p {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CARD CONTAINER ===== */
/* (Renamed to avoid conflict with header/nav container) */
.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 30px 20px;
  width: 340px;
  transition: all 0.4s ease;
  color: #333;
}

/* HOVER EFFECT */
.service-card:hover {
  background: #1a73e8;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.4);
}

/* Optional: agar andar headings aur paragraphs hain */
.service-card:hover h3,
.service-card:hover p,
.service-card:hover i {
  color: #fff;
}

.service-card:hover {
  background-color: #0078FF;
  color: w#1a73e8;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGE ===== */
.service-card img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* ===== TITLE ===== */
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* ===== PARAGRAPH ===== */
.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== LINK ===== */
.service-card a {
  font-weight: 600;
  color: #4b56e9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: #2d36c3;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .services-container {
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .services-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .service-card {
    width: 80%;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }

  .services-header p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 100%;
    padding: 25px 15px;
  }

  .service-card img {
    width: 100px;
  }
}

/* PROJECTS, SERVICES, ABOUT, CONTACT */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 28px;
  color: var(--c5);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 30px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 18px;
}

.project-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.link {
  color: var(--c3);
  text-decoration: none;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(13, 90, 189, 0.06);
  padding: 24px;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.pill-list li {
  background: linear-gradient(90deg, var(--c9), #fff);
  padding: 12px 16px;
  border-radius: 10px;
}

.contact-form {
  background: var(--surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-1);
}

.form-row {
  margin-bottom: 14px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e9f0ff;
}

/* ===== Footer Styling ===== */
/* ===== Footer Styling ===== */
.footer-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1300px;
  margin: auto;
  animation: fadeUp 1.2s ease;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 250px;
}

/* ===== Logo & About ===== */
.footer-logo img {
  max-width: 230px;
}

.footer-desc {
  color: #ddd;
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

/* ===== Social Icons ===== */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 0;
}

.social-icons a:hover {
  background: #00b4ff;
  transform: translateY(-5px) scale(1.1);
}

/* ===== Links ===== */
.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00b4ff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 0.6rem 0;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00b4ff;
}

/* ===== Contact Info ===== */
.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin: 0.8rem 0;
  color: #ddd;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease;
}

.contact-info ul li i {
  color: #00b4ff;
  font-size: 1.1rem;
}

.contact-info ul li:hover {
  color: #00b4ff;
}

/* ===== Bottom Bar ===== */
.footer-bottom {
  border-top: 1px solid rgba(233, 241, 239, 0.2);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
}

.footer-bottom p {
  color: white;
}

/* ===== Scroll to Top ===== */
#scrollTopBtn {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  background: #00b4ff;
  color: #fff;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background: #1a73e8;
  transform: translateY(-3px);
}

/* ===== Floating Animation Background ===== */
.footer-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #00b4ff33 10%, transparent 70%);
  animation: float1 10s infinite linear;
}

.footer-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #1a73e833 10%, transparent 70%);
  animation: float2 12s infinite linear;
}

@keyframes float1 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, 40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-40px, -30px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ===== Animation Keyframes ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  #scrollTopBtn {
    right: 50%;
    transform: translateX(50%);
  }

  .contact-info ul li {
    justify-content: center;
  }
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 400px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 38px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 70px;
    background: #fff;
    box-shadow: var(--shadow-1);
    border-radius: 10px;
    padding: 10px 0;
    width: 200px;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  .btn {
    width: 100%;
  }

  .project-card img {
    height: 160px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}

/* pricing-section */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f8fbff, #e9f1f9);
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1a73e8;
  margin-top: 3rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  background: #fff;
  border: 2px solid #1a73e8;
  color: #1a73e8;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.tab:hover,
.tab.active:hover {
  background: #1a73e8;
  color: #fff;
}

/* ===== Pricing Cards ===== */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.pricing-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 340px;
  text-align: center;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  color: #222;
}

.pricing-card:hover {
  background: #1a73e8;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #1a73e8;
}

/* popular card */
.pricing-card.popular {
  border: 2px solid #1a73e8;
  transform: scale(1.03);
}

/* text styles */
.pricing-card h3 {
  color: #1a73e8;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.pricing-card h2 {
  font-size: 2rem;
  color: #222;
  margin: 1rem 0;
  transition: color 0.3s ease;
}

.pricing-card h2 span {
  font-size: 1rem;
  color: #777;
  transition: color 0.3s ease;
}

.pricing-card p {
  color: #555;
  transition: color 0.3s ease;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-card li {
  border-bottom: 1px solid #eee;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

/* on hover — make all text white */
.pricing-card:hover h3,
.pricing-card:hover h2,
.pricing-card:hover h2 span,
.pricing-card:hover p,
.pricing-card:hover li {
  color: #fff;
}

/* ===== Button ===== */
.btn {
  background: linear-gradient(135deg, #1a73e8, #4b9bf3);
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: .75rem 2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #1559b1, #3c86e0);
}

/* ===== Animation & Responsive ===== */
.pricing-category {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.pricing-category.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ---------- Reset & Font ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ---------- Colors ---------- */
:root {
  --c1: #0D5ABD;
  --c2: #0078FF;
  --c3: #1659D8;
  --c4: #678BC4;
  --c5: #0B1F6A;
  --c6: #0C3E9C;
  --c7: #0D1D8A;
  --c8: #2E4580;
  --c9: #9BB6E3;

  --primary: var(--c1);
  --secondary: var(--c3);
  --accent: var(--c2);
  --light: var(--c9);
  --dark: var(--c5);
  --text: var(--c8);
  --text-light: var(--c4);
  --highlight: var(--c6);
  --muted: var(--c7);
}

body {
  background-color: #f9f9f9;
  color: var(--text);
  line-height: 1.6;
  padding: 20px;
}

/* ---------- Container ---------- */
.xp-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* ---------- Experience Section ---------- */
.xp-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 80px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* ---------- Header ---------- */
.xp-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.xp-header h1 {
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--light);
}

.xp-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  color: #f3f6ff;
  /* fixed color */
}

.xp-divider {
  height: 3px;
  width: 100px;
  background: var(--accent);
  margin: 20px auto;
  border-radius: 3px;
}

/* ---------- Stats Grid ---------- */
.xp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* ---------- Stat Card ---------- */
.xp-stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.xp-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.xp-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.xp-stat-card:hover::before {
  transform: scaleX(1);
}

/* ---------- Stat Number ---------- */
.xp-stat-number {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
}

/* remove the plus sign */
.xp-stat-number::after {
  content: none;
}

/* ---------- Stat Title ---------- */
.xp-stat-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--light);
}

/* ---------- Stat Description ---------- */
.xp-stat-description {
  color: #141414;
  /* soft white */
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.5;
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .xp-header h1 {
    font-size: 36px;
  }

  .xp-stat-number {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .xp-section {
    padding: 60px 20px;
  }

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

  .xp-header p {
    font-size: 16px;
  }

  .xp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .xp-stat-card {
    padding: 30px 15px;
  }

  .xp-stat-number {
    font-size: 40px;
  }

  .xp-stat-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .xp-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .xp-header h1 {
    font-size: 28px;
  }

  .xp-stat-number {
    font-size: 36px;
  }
}

/* about section */
:root {
  --c1: #0D5ABD;
  --c2: #0078FF;
  --c3: #1659D8;
  --c4: #678BC4;
  --c5: #0B1F6A;
  --c6: #0C3E9C;
  --c7: #0D1D8A;
  --c8: #2E4580;
  --c9: #9BB6E3;
  --magenta: var(--c1);
  --muted: var(--c4);
  --black: var(--c5);
  --light: #fff;
}

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

body {
  font-family: "Open Sans", system-ui, Arial;
  background: var(--light);
  color: var(--black);
}

/* Layout */
.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
  padding: 40px 0;
}

/* Left content */
.left {
  padding: 64px 72px;
  background: linear-gradient(90deg, rgba(155, 182, 227, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
}

.eyebrow {
  color: var(--magenta);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

h1 {
  font-family: Montserrat, sans-serif;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--black);
  font-weight: 800;
}

p.lead {
  color: var(--muted);
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta {
  display: inline-block;
  background: #1a73e8;
  color: white;
  padding: 16px 34px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  border-radius: 4px;
  font-family: Montserrat, sans-serif;
  box-shadow: 0 6px 14px rgba(13, 90, 189, 0.25);
  transition: 0.25s ease;
}

.cta:hover {
  background: #1a73e8;
  transform: translateY(-2px);
}

/* ✅ Right image area — Clean, responsive, direct image */
.right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  padding: 0 20px;
  /* 👈 Add horizontal padding */
  box-sizing: border-box;
  /* ensure padding doesn’t mess up width */
}

.img-frame {
  width: 100%;
  max-width: 850px;
  border: none;
  overflow: hidden;
  box-shadow: none;
  /* border-radius: 12px; */
  margin: 0 auto;
}

.img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* border-radius: 15px; */
  transition: transform 0.4s ease;
}

.img-frame:hover img {
  transform: scale(1.03);
}

/* Remove stripe */
.stripe {
  display: none;
}

/* Responsive */
@media(max-width:980px) {
  .banner {
    grid-template-columns: 1fr;
  }

  .right {
    order: 2;
    padding: 0;
  }

  h1 {
    font-size: 42px;
  }

  p.lead {
    font-size: 17px;
  }

  .img-frame {
    max-width: 600px;
  }
}

@media(max-width:700px) {
  h1 {
    font-size: 34px;
  }

  .left {
    padding: 32px;
  }

  .img-frame {
    max-width: 480px;
  }
}

@media(max-width:480px) {
  h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  p.lead {
    font-size: 16px;
  }

  .left {
    padding: 24px;
  }

  .img-frame {
    max-width: 340px;
  }
}

/* about-section-page */
:root {
  --c1: #0D5ABD;
  --c2: #0078FF;
  --c3: #1659D8;
  --c4: #678BC4;
  --c5: #0B1F6A;
  --c6: #0C3E9C;
  --c7: #0D1D8A;
  --accent: var(--c2);
  --bg: #ffffff;
  --text: #333;
  --muted: #7a7a7a;
  --max-width: 1200px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding: 40px 0;
}

/* ===== LAYOUT ===== */
.about-container {
  width: 100%;
  /* NEW → full width */
  max-width: var(--max-width);
  margin: 0 auto;
  /* NEW → center alignment */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

/* LEFT SIDE */
.about-content {
  padding-right: 20px;
}

.accent-bar {
  width: 90px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.about-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--c5);
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--c7);
  margin-bottom: 24px;
}

.about-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 700px;
}

/* STATS */
.about-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stat-box {
  width: 160px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--accent);
  border-radius: 12px;
  background: #f9faff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--accent);
}

.stat-value .plus {
  font-size: 40px;
  vertical-align: top;
  margin-left: 4px;
}

.stat-info {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--c5);
  line-height: 1.1;
}

.stat-info .line {
  font-size: 20px;
}

/* RIGHT IMAGE */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.image-main {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-main:hover {
  transform: scale(1.03);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 980px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px;
  }

  .about-content {
    text-align: center;
    padding-right: 0;
  }

  .about-heading {
    font-size: 40px;
    text-align: center;
  }

  .about-subtitle,
  .about-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .image-box {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 0 12px;
  }

  .about-heading {
    font-size: 32px;
  }

  .stat-box {
    width: 130px;
    height: 90px;
  }

  .stat-value {
    font-size: 48px;
  }

  .image-box {
    max-width: 380px;
  }
}

@media (max-width: 420px) {
  .about-heading {
    font-size: 28px;
  }

  .image-box {
    max-width: 300px;
  }

  .about-container {
    padding: 0 10px;
  }
}

/* why-chose-ur-section */
/* ====== COLOR THEME ====== */
:root {
  --c1: #0D5ABD;
  --c2: #0078FF;
  --c3: #1659D8;
  --c4: #678BC4;
  --c5: #0B1F6A;
  --c6: #0C3E9C;
  --c7: #0D1D8A;
  --c8: #2E4580;
  --c9: #9BB6E3;
}

/* ====== GLOBAL STYLES ====== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #f9fbff;
  color: #222;
}

h1,
h2,
h3 {
  color: var(--c5);
}

p {
  color: #444;
}

/* ====== SECTION ====== */
.choose-section {
  text-align: center;
  padding: 80px 20px;
}

.choose-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.choose-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  margin: 8px auto 0;
  border-radius: 3px;
}

.choose-subheading {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* ====== CONTENT ====== */
.choose-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.choose-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.choose-content {
  flex: 1 1 450px;
  text-align: left;
}

.choose-features {
  margin-top: 20px;
}

.choose-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(13, 90, 189, 0.15);
  padding: 15px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 120, 255, 0.2);
}

.choose-icon {
  font-size: 1.8rem;
  color: var(--c3);
  margin-right: 15px;
}

/* ====== CTA BUTTON ====== */
.choose-btn {
  margin-top: 25px;
  background: #1a73e8;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.choose-btn:hover {
  background: #1a73e8;
  transform: scale(1.05);
}

/* ====== ANIMATIONS ====== */
.fade-in-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .choose-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .choose-content {
    text-align: center;
  }

  .choose-card {
    text-align: left;
  }
}

/* cursor-section */
/* ===== Custom Cursor ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #0D5ABD, #0078FF);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(13, 90, 189, 0.6);
  transition: transform 0.15s ease, background 0.3s ease;
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(13, 90, 189, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-out, border-color 0.4s ease;
}

/* Hover Effect on Links & Buttons */
a:hover~.custom-cursor,
button:hover~.custom-cursor,
.cta-btn:hover~.custom-cursor,
.choose-btn:hover~.custom-cursor {
  transform: translate(-50%, -50%) scale(1.4);
  background: linear-gradient(135deg, #1659D8, #0C3E9C);
  box-shadow: 0 0 25px rgba(0, 120, 255, 0.8);
}

/* Optional: Glow Animation */
@keyframes cursorGlow {
  0% {
    box-shadow: 0 0 10px #0078FF, 0 0 20px #0D5ABD;
  }

  50% {
    box-shadow: 0 0 20px #1659D8, 0 0 40px #0078FF;
  }

  100% {
    box-shadow: 0 0 10px #0078FF, 0 0 20px #0D5ABD;
  }
}

.custom-cursor {
  animation: cursorGlow 2.5s infinite ease-in-out;
}

/* Hide system cursor */
body {
  cursor: none;
}

/* loading-section */
:root {
  --c1: #0D5ABD;
  --c2: #0078FF;
  --c3: #1659D8;
  --c4: #678BC4;
  --c5: #0B1F6A;
  --c6: #0C3E9C;
  --c7: #0D1D8A;
  --c8: #2E4580;
  --c9: #9BB6E3;
}

/* LOADER */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  /* 🔹 Changed from gradient to white */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1s ease;
}

/* 🔸 Removed background animation (bgShift) because not needed now */
/* Loader Circle */
.loader-circle {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top: 6px solid var(--c9);
  border-right: 6px solid var(--c2);
  border-bottom: 6px solid transparent;
  animation: spin 1.5s linear infinite;
}

.inner-circle {
  width: 110px;
  height: 110px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 120, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.inner-circle img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(0, 120, 255, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 120, 255, 0.5);
  }
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}

body {
  margin: 0;
  background-color: white;
  color: #333;
  font-family: sans-serif;
}

#main-content {
  display: none;
  padding: 50px;
  text-align: center;
}

/* our-work-section */
/* ===== Section Wrapper ===== */
.nx-lw-wrapper {
  background: #f7f9fc;
  padding: 4rem 1rem;
}

/* ===== Heading ===== */
.nx-lw-headbox {
  text-align: center;
  margin-bottom: 3rem;
}

.nx-lw-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e293b;
}

.nx-lw-underline {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #4f46e5, #7c3aed);
  margin: 0.4rem auto 0;
  border-radius: 20px;
}

/* ===== Grid (2 Cards Desktop) ===== */
.nx-lw-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .nx-lw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nx-lw-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===== Card ===== */
.nx-lw-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2048 / 1310;
  /* Image ke exact ratio ke mutabiq */
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image */
.nx-lw-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.nx-lw-card:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 12px rgba(37, 99, 235, 0.35),
    0 0 25px rgba(124, 58, 237, 0.25),
    0 0 35px rgba(79, 70, 229, 0.18);
}

.nx-lw-card:hover .nx-lw-img {
  transform: scale(1.08);
}

/* Overlay */
.nx-lw-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  opacity: 0;
  transition: opacity 0.45s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.nx-lw-card:hover .nx-lw-layer {
  opacity: 1;
}

.nx-lw-caption {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 600;
}

/* ===== View More Button ===== */
.nx-lw-morebox {
  text-align: center;
  margin-top: 2.5rem;
}

.nx-lw-morebtn {
  padding: 0.8rem 2.2rem;
  background: #1a73e8;
  color: white;
  font-size: 1.1rem;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.nx-lw-morebtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

/* contact-page */
:root {
  --c1: #0D5ABD;
  --c2: #0078FF;
  --c3: #1659D8;
  --c4: #678BC4;
  --c5: #0B1F6A;
  --c6: #0C3E9C;
  --c7: #0D1D8A;
  --c8: #2E4580;
  --c9: #9BB6E3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.xpulse-contact-zone {
  background: #fff;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.xpulse-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  gap: 3rem;
  width: 100%;
}

/* ===== Info Box ===== */
.xpulse-info-box {
  background: linear-gradient(135deg, var(--c1), var(--c3));
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.xpulse-info-box:hover {
  transform: translateY(-5px);
}

.xpulse-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  /* Gradient for the text (preferred) */
  background: linear-gradient(to right, var(--c2), var(--c9));
  background-clip: text;
  /* standard (may be ignored by some browsers) */
  -webkit-background-clip: text;
  /* required for WebKit/Blink */
  /* -webkit-text-fill-color: transparent;make text transparent so gradient shows through */

  /* Fallback for browsers that don't support background-clip:text */
  /* color: var(--c2); visible fallback color */
  display: inline-block;
  /* helps background-clip behave reliably */
}

.xpulse-sub {
  color: #eaf1ff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.xpulse-divider {
  height: 2px;
  width: 60%;
  background: linear-gradient(to right, var(--c2), transparent);
  margin-bottom: 1.5rem;
}

.xpulse-info-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.xpulse-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.xpulse-info-item i {
  font-size: 1.5rem;
  color: var(--c9);
}

.xpulse-info-item h4 {
  color: #fff;
  font-size: 1rem;
}

.xpulse-info-item p {
  color: #eaf1ff;
  font-size: 0.95rem;
}

/* ===== Form Box ===== */
.xpulse-form-box {
  background: #f8faff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.xpulse-form-box h3 {
  font-size: 1.4rem;
  color: var(--c1);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.xpulse-field {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.xpulse-field label {
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--c5);
}

.xpulse-field input,
.xpulse-field select,
.xpulse-field textarea {
  padding: 0.9rem;
  border: 1px solid #d8e0f3;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.xpulse-field input:focus,
.xpulse-field select:focus,
.xpulse-field textarea:focus {
  border-color: var(--c2);
  box-shadow: 0 0 5px rgba(13, 90, 189, 0.2);
  outline: none;
}

.xpulse-btn {
  background: linear-gradient(135deg, var(--c2), var(--c3));
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: 0.3s ease;
}

.xpulse-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 120, 255, 0.3);
}

.xpulse-success-msg {
  display: none;
  margin-top: 1rem;
  color: var(--c3);
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .xpulse-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .xpulse-contact-zone {
    padding: 2rem 1rem;
  }

  .xpulse-title {
    font-size: 1.6rem;
  }
}

/* portfolio-page-section */
:root {
  --c1: #0D5ABD;
  --c2: #0078FF;
  --c3: #1659D8;
  --c4: #678BC4;
  --c5: #0B1F6A;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #ebf3ff, #cddcff);
  color: #0b1f3a;
  padding: 60px 24px;
}

/* ✅ Fixed container padding so cards don’t stick to edges */
.rwx-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.rwx-heading {
  text-align: center;
  margin-bottom: 52px;
}

.rwx-heading h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(90deg, var(--c1, #ff6a00), var(--c2, #ee0979));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rwx-textFlow 6s linear infinite;
}

@keyframes rwx-textFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.rwx-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #2f3e53;
  font-size: 18px;
  line-height: 1.55;
}

/* Filters */
.rwx-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 80px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(13, 90, 189, 0.15);
  margin: 50px auto;
  position: relative;
}

.rwx-pill {
  position: relative;
  display: inline-block;
  border-radius: 999px;
  background: #111;
  color: white;
  padding: 10px 24px;
  z-index: 0;
  overflow: hidden;
}

.rwx-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(120deg, var(--c1, #ff00cc), var(--c2, #3333ff), var(--c3, #00ffff), var(--c1, #ff00cc));
  background-size: 200% 200%;
  animation: rwx-borderGlow 3s linear infinite;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
}

@keyframes rwx-borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.rwx-pill:hover {
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(13, 90, 189, 0.35);
}

.rwx-pill[data-active="true"] {
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  color: #fff;
  box-shadow: 0 8px 24px rgba(13, 90, 189, 0.45);
  transform: translateY(-3px);
}

/* ✅ Grid fix so cards stay centered and spaced properly */
.rwx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  justify-items: center;
}

/* Cards */
.rwx-card {
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
}

.rwx-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(13, 90, 189, 0.2);
}

/* Image inside card */
.rwx-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rwx-card:hover img {
  transform: scale(1.05);
}

.rwx-meta {
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.rwx-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px;
}

.rwx-sub {
  font-size: 14px;
  color: #555;
}

.rwx-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--c3);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
}

/* Lightbox */
.rwx-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.rwx-lightbox.show {
  display: flex;
}

.rwx-lightbox-content {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  max-width: 800px;
  width: 95%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: rwx-zoomIn 0.3s ease;
}

@keyframes rwx-zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.rwx-lightbox-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.rwx-close-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .rwx-heading h1 {
    font-size: 42px;
  }

  .rwx-thumb img {
    height: auto;
  }

  .rwx-container {
    padding: 0 16px;
  }
}

/* reviews-section */
.reviews-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  line-height: 1.6;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviewsWrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.reviewsHeader {
  text-align: center;
  margin-bottom: 50px;
}

.reviewsHeader h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.reviewsHeader h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.reviewsHeader p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.singleReview {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.singleReview:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.singleReview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #3498db, #2ecc71);
}

.quoteSymbol {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 15px;
  opacity: 0.7;
}

.reviewContent {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

.reviewAuthor {
  display: flex;
  align-items: center;
}

.authorImage {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #f1f1f1;
}

.authorImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authorDetails h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.authorDetails p {
  font-size: 0.9rem;
  color: #7f8c8d;
}

.starRating {
  margin-top: 10px;
  color: #f39c12;
}

.starRating i {
  margin-right: 3px;
}

.reviewStats {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.statBlock {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.statValue {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 10px;
}

.statText {
  font-size: 1rem;
  color: #7f8c8d;
}

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

  .reviewsHeader h2 {
    font-size: 2rem;
  }

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

/* hero-section */
/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Browser ke default margin remove */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.hero-section {
  overflow-x: hidden;
  color: white;
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0, 10, 40, 0.75),
      rgba(0, 15, 60, 0.8)),
    url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?auto=format&fit=crop&w=2070&q=80') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* FIXED: left/right padding hataya */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  width: 90%;
  /* Responsive width for small devices */
  margin: 0 auto;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

/* ---------- HERO TEXT ---------- */
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  display: inline-block;
  position: relative;
  /* Gradient Text */
  background: linear-gradient(90deg, #48a9fe, #0059ff, #001f9a);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 90, 255, 0.25),
    0 0 30px rgba(0, 80, 255, 0.15);
  animation: heroTextFlow 5s ease infinite;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #48a9fe);
  border-radius: 2px;
  box-shadow: 0 0 10px #48a9fe;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #dbeafe;
  text-shadow: 0 0 10px rgba(0, 140, 255, 0.2);
}

/* ---------- BUTTON ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #0070f3, #3b82f6);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 136, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 136, 255, 0.6);
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

/* ---------- FEATURES ---------- */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

.feature {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(72, 169, 254, 0.3);
  border-color: rgba(72, 169, 254, 0.4);
}

.feature i {
  color: #48a9fe;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(72, 169, 254, 0.3);
}

/* ---------- FLOATING ICONS ---------- */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  color: #48a9fe;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  bottom: 25%;
  right: 10%;
  animation-delay: 3s;
}

/* ---------- ANIMATIONS ---------- */
@keyframes heroTextFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(8deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
/* Tablets & small laptops */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .feature {
    width: 90%;
  }
}

/* Phones */
@media (max-width: 576px) {
  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .feature {
    width: 100%;
    font-size: 0.85rem;
  }

  .floating-icon {
    font-size: 1.4rem;
  }
}

/* how-we-work? */
.work {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #007BFF, #007BFF);
  color: #fff;
  overflow-x: hidden;
}

/* === SECTION === */
.xray-section-container {
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.xray-section-container::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.08), transparent 70%);
  animation: bgMove 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes bgMove {
  from {
    transform: translateX(0) translateY(0);
  }

  to {
    transform: translateX(-50px) translateY(30px);
  }
}

/* === GRID === */
.xray-grid-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
  z-index: 1;
}

/* === IMAGE SIDE === */
.xray-image-box {
  position: relative;
  perspective: 1000px;
}

.xray-image-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #1752E8, #007BFF);
  border-radius: 20px;
  filter: blur(10px);
  z-index: 0;
  animation: floatBg 6s ease-in-out infinite alternate;
}

@keyframes floatBg {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(15px);
  }
}

.xray-main-image {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transform: rotateY(0);
  transition: transform 0.8s ease, box-shadow 0.4s ease;
}

.xray-main-image:hover {
  transform: rotateY(8deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* === TEXT SIDE === */
.xray-text-box {
  animation: fadeInRight 1.2s ease forwards;
  opacity: 0;
  transform: translateX(60px);
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.xray-mini-title {
  color: #9EBBE9;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(to right, #6ca8ff, #b2cfff);
  /* FIXED — cross-browser support */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.xray-main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.xray-main-title span {
  color: #fff;
  position: relative;
}

.xray-main-title span::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #1752E8, #00C3FF);
  border-radius: 3px;
  opacity: 0.8;
}

.xray-desc {
  color: #d6e0ff;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 90%;
  font-size: 1.05rem;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* === PLAY BUTTON === */
.xray-play-btn-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.xray-play-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #1752E8, #007BFF);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  animation: pulseRing 2.5s infinite;
  transition: transform 0.3s ease;
}

.xray-play-circle:hover {
  transform: scale(1.1);
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 82, 232, 0.4);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(23, 82, 232, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 82, 232, 0);
  }
}

.xray-play-icon {
  color: white;
  font-size: 26px;
  transform: translateX(2px);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.xray-play-text {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #b9cfff;
  transition: color 0.3s ease;
}

.xray-play-btn-box:hover .xray-play-text {
  color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .xray-grid-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /*  Yeh line add ki gayi hai image ko last dikhane ke liye */
  .xray-image-box {
    order: 2;
  }

  .xray-text-box {
    order: 1;
  }

  .xray-image-bg {
    top: -20px;
    left: -20px;
  }

  .xray-desc {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .xray-play-btn-box {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .xray-main-title {
    font-size: 2.2rem;
  }

  .xray-desc {
    padding: 0.8rem 1rem;
  }

  .xray-play-circle {
    width: 65px;
    height: 65px;
  }

  .xray-play-icon {
    font-size: 20px;
  }
}

/* about-main-section */
/* ========== Theme Colors ========== */
:root {
  --color-1: #1558C0;
  --color-2: #007BFF;
  --color-3: #1752E8;
  --color-4: #6788C7;
  --color-5: #0A1F66;
  --color-6: #0D3C9D;
  --color-7: #14238B;
  --color-8: #2A4280;
  --color-9: #9EBBE9;
}

.about-main-section {
  font-family: "Poppins", sans-serif;
  background-color: #FFFFFF;
  color: #222;
  line-height: 1.6;
}

/* ========== Layout Container ========== */
.achieving-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ========== Image Section ========== */
.image-section {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.image-section img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

/* ========== Text Section ========== */
.text-section {
  flex: 1;
  min-width: 320px;
}

.text-section h1 {
  font-size: 2.2rem;
  color: var(--color-7);
  font-weight: 700;
  margin-bottom: 16px;
}

.text-section .intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 32px;
}

.text-section h2 {
  font-size: 1.8rem;
  color: var(--color-2);
  font-weight: 700;
  margin-bottom: 16px;
}

.text-section p {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
}

/* ========== Responsive Design ========== */
/* ========== Responsive Design ========== */
@media (max-width: 992px) {
  .achieving-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  /* Make text appear first and image last */
  .text-section {
    order: 1;
  }

  .image-section {
    order: 2;
  }

  .text-section h1 {
    font-size: 2rem;
  }

  .text-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .achieving-section {
    padding: 40px 15px;
  }

  .text-section h1 {
    font-size: 1.7rem;
  }

  .text-section h2 {
    font-size: 1.4rem;
  }

  .text-section p {
    font-size: 1rem;
  }
}

/* services-vector-section */
/* Theme Colors */
:root {
  --c1: #1558C0;
  --c2: #007BFF;
  --c3: #1752E8;
  --c4: #6788C7;
  --c5: #0A1F66;
  --c6: #0D3C9D;
  --c7: #14238B;
  --c8: #2A4280;
  --c9: #9EBBE9;
}

/* Main Section */
.vector-section {
  padding: 60px 0;
  background: #fff;
}

/* Container */
.vector-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 0 20px;
}

/* ------------------------------------- */
/*            ANIMATIONS                 */
/* ------------------------------------- */
.vector-image,
.vector-content {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.vector-image {
  animation-delay: 0.1s;
  transform: translateX(-40px);
}

.vector-content {
  animation-delay: 0.3s;
  transform: translateX(40px);
}

.vector-tags span,
.learn-btn {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

/* Slide + fade */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade from bottom */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ------------------------------------- */
/* Left Image */
.vector-image {
  flex: 1;
  text-align: center;
}

.vector-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
}

/* Right Content */
.vector-content {
  flex: 1;
}

.vector-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 25px;
}

/* TAGS */
.vector-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.vector-tags span {
  padding: 10px 20px;
  background: #f3f6fb;
  color: var(--c7);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Paragraph */
.vector-content p {
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 35px;
  max-width: 600px;
}

/* Button */
.learn-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(to right, var(--c1), var(--c2));
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.learn-btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
  .vector-container {
    flex-direction: column-reverse;
    /* IMAGE LAST */
    text-align: center;
  }

  .vector-content p {
    margin: auto;
  }
}

/* services-digitizing-section */
* -------------------------------------- SECTION FULL WIDTH --------------------------------------- */ .digitizing-section {
  width: 100%;
  padding: 60px 0;
  background: #fff;
}

.color {
  background-color: #fff;
}

/* --------------------------------------
   CENTER WRAPPER (Main Fix)
   – Content hamesha center box me rahega
--------------------------------------- */
.digitizing-wrapper {
  max-width: 1400px;
  /* ⭐ Center width */
  margin: 0 auto;
  /* ⭐ Always centered */
  padding: 0 40px;
  /* Side spacing */
}

/* --------------------------------------
   CONTENT + IMAGE CONTAINER
--------------------------------------- */
.digitizing-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* ⭐ Perfect center */
  gap: 60px;
}

/* Left Content */
.digitizing-content {
  flex: 1;
  max-width: 580px;
}

/* Heading */
.digitizing-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 25px;
}

/* Paragraph */
.digitizing-content p {
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Right Image */
.digitizing-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.digitizing-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  transform: scale(0.95);
  transition: 0.4s ease;
}

.digitizing-image img:hover {
  transform: scale(1);
}

/* Tags */
.digitizing-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.digitizing-tags span {
  padding: 10px 22px;
  background: #f3f6fb;
  color: var(--c7);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Button */
.digitizing-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(to right, var(--c1), var(--c2));
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.digitizing-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Animations */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeLeft 1s ease forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --------------------------------------
   RESPONSIVE DESIGN
--------------------------------------- */
@media (max-width: 992px) {
  .digitizing-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .digitizing-content {
    max-width: 100%;
  }

  .digitizing-image img {
    max-width: 100%;
  }
}

/* payment-method-section */
/* ---------- Background Wrapper ---------- */
.uix-gyre-19 {
  background: #f8fafc;
  /* Light gray background */
  padding: 4rem 0;
  /* Vertical spacing */
}

/* ---------- Heading Box ---------- */
.uix-nova-272 {
  text-align: center;
  margin-bottom: 3rem;
}

.uix-txt-887 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #111827;
  /* Dark gray */
  letter-spacing: -0.5px;
}

.uix-line-441 {
  width: 6rem;
  height: 0.28rem;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, #2563eb, #4f46e5, #7c3aed);
  border-radius: 1rem;
}

/* ---------- Card Area ---------- */
.uix-grid-900 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.7rem;
  padding: 0 1.5rem;
}

/* ---------- Card Box ---------- */
.uix-shard-73 {
  background: white;
  width: 18rem;
  height: 11rem;
  border-radius: 1.1rem;
  padding: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* B&W default look */
  filter: grayscale(100%) brightness(0.75);
  /* Premium smooth transition */
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Soft shadow */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ---------- Gentle Premium Hover ---------- */
.uix-shard-73:hover {
  filter: grayscale(0%) brightness(1);
  /* Smooth + minimal lift */
  transform: scale(1.035) translateY(-2px);
  /* Light chromatic glow (premium) */
  box-shadow:
    0 0 10px rgba(37, 99, 235, 0.35),
    0 0 22px rgba(124, 58, 237, 0.25),
    0 0 32px rgba(79, 70, 229, 0.18);
}

/* ---------- Logo Style ---------- */
.uix-logo-553 {
  max-height: 5rem;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.uix-shard-73:hover .uix-logo-553 {
  transform: scale(1.12);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

/* ========================================= */
/* UNIVERSAL SCROLL ANIMATIONS */
/* ========================================= */

.anim-fade-up,
.anim-from-left,
.anim-from-right,
.anim-from-top {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Initial Offsets */
.anim-fade-up {
  transform: translateY(40px);
}

.anim-from-left {
  transform: translateX(-60px);
}

.anim-from-right {
  transform: translateX(60px);
}

.anim-from-top {
  transform: translateY(-40px);
}

/* Active State */
.anim-fade-up.is-visible,
.anim-from-left.is-visible,
.anim-from-right.is-visible,
.anim-from-top.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Optional Stagger for Cards (if adjacent) */
.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.2s;
}

.project-card:nth-child(2) {
  transition-delay: 0.1s;
}

.project-card:nth-child(3) {
  transition-delay: 0.2s;
}

.project-card:nth-child(4) {
  transition-delay: 0.3s;
}

.xp-stat-card:nth-child(2) {
  transition-delay: 0.1s;
}

.xp-stat-card:nth-child(3) {
  transition-delay: 0.2s;
}

.xp-stat-card:nth-child(4) {
  transition-delay: 0.3s;
}


/* ========================================= */
/* UNIVERSAL SCROLL ANIMATIONS */
/* ========================================= */

.anim-fade-up,
.anim-from-left,
.anim-from-right,
.anim-from-top {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Initial Offsets */
.anim-fade-up {
  transform: translateY(40px);
}

.anim-from-left {
  transform: translateX(-60px);
}

.anim-from-right {
  transform: translateX(60px);
}

.anim-from-top {
  transform: translateY(-40px);
}

/* Active State */
.anim-fade-up.is-visible,
.anim-from-left.is-visible,
.anim-from-right.is-visible,
.anim-from-top.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  /* Force GPU */
}

/* Stagger Delays */
.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.2s;
}

.project-card:nth-child(2) {
  transition-delay: 0.1s;
}

.project-card:nth-child(3) {
  transition-delay: 0.2s;
}

.project-card:nth-child(4) {
  transition-delay: 0.3s;
}

.xp-stat-card:nth-child(2) {
  transition-delay: 0.1s;
}

.xp-stat-card:nth-child(3) {
  transition-delay: 0.2s;
}

.xp-stat-card:nth-child(4) {
  transition-delay: 0.3s;
}

/* ========================================= */
/* MERGED INLINE STYLES */
/* ========================================= */

/* --- Email Bubble Button --- */
.email-bubble-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #0d6efd, #4a8bff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  cursor: pointer;
  animation: floatAnim 3s ease-in-out infinite, glowAnim 4s ease-in-out infinite;
  transition: 0.35s ease;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  will-change: transform, box-shadow;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes glowAnim {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
  }

  50% {
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.55);
  }
}

.email-bubble-btn:hover {
  transform: translateY(-10px) scale(1.15) rotate(-6deg);
  background: linear-gradient(135deg, #3e8cff, #005ae0);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.email-bubble-btn::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.18);
  animation: pulseRing 3s infinite ease-out;
  z-index: -1;
  will-change: transform, opacity;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.email-bubble-btn:active::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: clickRipple .4s ease-out;
}

@keyframes clickRipple {
  from {
    transform: scale(0);
    opacity: .6;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .email-bubble-btn {
    width: 52px;
    height: 52px;
    right: 15px;
    bottom: 15px;
  }

  .email-bubble-btn::after {
    width: 75px;
    height: 75px;
  }
}

/* --- Hero Section --- */
.qpl-wrapper-hero99 {
  font-family: Arial, sans-serif;
  background: url('BACKGROUND.png') center/cover no-repeat;
  overflow-x: hidden;
}

.qpl-hero-box77 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

@media (min-width:1024px) {
  .qpl-hero-box77 {
    flex-direction: row;
    padding: 4rem 5rem;
  }
}

.qpl-left-col55 {
  width: 100%;
  color: #fff;
  text-align: center;
}

@media (min-width:1024px) {
  .qpl-left-col55 {
    width: 50%;
    text-align: left;
    color: #fff;
  }
}

.qpl-title-heading44 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  filter: drop-shadow(0 10px 15px rgba(76, 0, 255, 0.751));
}

@media (min-width:1024px) {
  .qpl-title-heading44 {
    font-size: 4.5rem;
    color: #fff;
  }
}

.qpl-para-text88 {
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
}

@media (min-width:1024px) {
  .qpl-para-text88 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
  }
}

.qpl-btn-go22 {
  margin-top: 2rem;
  background: #fff;
  color: #0369a1;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.qpl-btn-go22:hover {
  transform: scale(1.05);
}

.qpl-right-col66 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width:1024px) {
  .qpl-right-col66 {
    width: 50%;
    justify-content: flex-end;
    margin-top: 0;
  }
}

.qpl-logo-img11 {
  width: 28rem;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.25));
  animation: none !important;
  transform: none !important;
  transition: none !important;
  margin: 0 auto;
}

@media(min-width:1024px) {
  .qpl-logo-img11 {
    width: 32rem;
    margin-right: -20px;
  }
}

.qpl-slide-l33 {
  opacity: 0;
  transform: translateX(-80px);
  transition: transform 1.1s ease, opacity 1.1s ease;
  will-change: transform, opacity;
}

.qpl-slide-l33.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.qpl-slide-r33 {
  opacity: 0;
  transform: translateX(120px);
  transition: transform 1.3s ease, opacity 1.3s ease;
  will-change: transform, opacity;
}

.qpl-slide-r33.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Software Section --- */
.bg-page {
  background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
  font-family: "Inter", sans-serif;
  color: #0f172a;
  overscroll-behavior: none;
}

/* Using existing .section-title etc if possible, but overriding some locally scoped ones if needed. */
/* Renaming scoped vars for safety, though mapped to .software-section parent */

.software-section {
  padding: 5rem 0;
  background: white;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(13, 90, 189, 0.12);
  transition: all .35s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: transform, box-shadow;
}

.software-section:hover {
  box-shadow: 0 16px 40px rgba(0, 120, 255, 0.22);
  transform: translateY(-3px);
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  gap: 100px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}

.logo-item {
  height: 90px;
  filter: grayscale(100%) contrast(0.85) brightness(0.92);
  transition: all .35s cubic-bezier(0.2, 0.6, 0.2, 1);
  opacity: 0.85;
  will-change: transform, filter;
}

.logo-item:hover {
  filter: grayscale(0%);
  transform: scale(1.12) translateY(-4px);
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}