/* =========================
   Root Variables
========================= */
:root {
  --purple-blue-gradient: linear-gradient(90deg, #6a5acd, #00c6ff);
  --gradient-start: #6a5acd;
  --gradient-end: #00c6ff;
}

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

/* Universal Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

/* =========================
   Header
========================= */
header {
  background: #fff;
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);

}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img { width: 35px; }

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul li { position: relative; }

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 0;
  transition: 0.3s;
}
nav ul li a:hover { color: #6dc9f9; }

/* Mega Dropdown */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 25px;
  width: 700px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 100;
}
nav ul li:hover .mega-dropdown { display: grid; }

.dropdown-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: 0.3s;
  border-radius: 8px;
  padding: 8px;
}
.dropdown-item:hover { background: #f8f8f8; }

.dropdown-item i {
  background: var(--purple-blue-gradient);
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  font-size: 16px;
}

.dropdown-item div h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.dropdown-item div p {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

/* Right Section */
.right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.country-select {
  padding: 6px 12px;
  border-radius: 25px;
  border: 1px solid #b488dd;
  cursor: pointer;
  background: #fff;
}

.btn {
  padding: 8px 18px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn-login {
  background: transparent;
  color: #6dc9f9;
  border: 1.5px solid #6dc9f9;
}
.btn-login:hover {
  background: var(--purple-blue-gradient);
  color: #fff;
}
.btn-start {
  background: var(--purple-blue-gradient);
  color: #fff;
}
.btn-start:hover { opacity: 0.9; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* Mobile Nav */
@media (max-width: 992px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: left;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    padding: 0;
  }
  nav.active { max-height: 600px; padding: 20px; }
  nav ul { flex-direction: column; gap: 15px; }
  .mega-dropdown {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    box-shadow: none;
    padding: 15px 0;
  }
  .hamburger { display: flex; }
}


/* =========================
   Hero Section
========================= */
/* ---------------- HERO SECTION ---------------- */
.hero-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fbff 0%, #f5f7ff 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* Left Content */
.hero-top-stats {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-top-stats i {
  color: #6a5acd;
  margin-right: 6px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-gradient,
.btn-outline {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gradient {
  background: var(--purple-blue-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(106, 90, 205, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(106, 90, 205, 0.4);
}

.btn-outline {
  border: 1.5px solid #ccc;
  color: #333;
}

.btn-outline:hover {
  border-color: #6a5acd;
  color: #6a5acd;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 100px;
  font-size: 14px;
  margin-top: 20px;
}

.hero-stats h3 {
  font-size: 22px;
  font-weight: 700;
  color: #6a5acd;
}

/* Right Image */
.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.status-badge {
  position: absolute;
  top: 0px;
  left: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.floating-badge.right {
  top: 40%;
  right: 8px;
}

.floating-badge.bottom {
  bottom: 20px;
  left: 20px;
  background: var(--purple-blue-gradient);
  color: #fff;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ✅ Responsive Fixes for 320px–768px */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 30px;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin: 0 auto 30px;
    max-width: 90%;
    line-height: 1.7;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-gradient,
  .btn-outline {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
  }

  .hero-image img {
    width: 90%;
    max-width: 380px;
    margin: 0 auto;
  }

  .status-badge {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 4px 10px;
  }

  .floating-badge.right {
    top: 50%;
    right: 10px;
  }

  .floating-badge.bottom {
    bottom: 10px;
    left: 10px;
  }

  .hero-section {
    padding: 60px 16px;
  }
}

/* ✅ Extra Small Screens (under 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-stats {
    gap: 20px;
  }
}


/* =========================
   Talent Section
========================= */
/* Section */
.talent-section {
  padding: 80px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-title span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Layout */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Card */
.talent-card {
  background: #f9fbff;
  border-radius: 14px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.talent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Icon Circle */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--purple-blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

/* Headings & Paragraph */
.talent-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.talent-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

/* Numbered Gradient List */
.gradient-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  counter-reset: step;
}

.gradient-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 45px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.gradient-list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5acd, #00c6ff);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn-gradient,
.btn-outline {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gradient {
  background: var(--purple-blue-gradient);
  color: #fff;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid #ddd;
  color: #444;
}

.btn-outline:hover {
  border-color: #6a5acd;
  color: #6a5acd;
}


a.btn-gradient {
    margin-top: 15px;
}

a.btn-outline{

  margin-top: 15px;
}



/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
  .talent-card {
    padding: 30px 20px;
  }
}

/* =========================
   Services Section
========================= */

/* Section Base */
.services-section {
  text-align: center;
  padding: 80px 20px;
  background: #f9fbff;
   font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Small Tag */
.section-tag {
  display: inline-block;
  background: #eef4ff;
  color: #5a67d8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  counter-reset: service-count;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px 30px 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Numbering Circle */
.service-card::before {
  counter-increment: service-count;
  content: counter(service-count, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 30px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple-blue-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Card Title */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
  .section-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }
  .services-grid {
    gap: 18px;
  }
}



/*CTA Section Css*/

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

.cta-box {
  background: #f9fbff;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cta-box h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.cta-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn-primary {
  background: var(--purple-blue-gradient);
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid #ddd;
  padding: 12px 28px;
  border-radius: 30px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}
.btn-secondary:hover {
  border-color: #6dc9f9;
  color: #6dc9f9;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 30px 20px;
  }
  .cta-box h3 {
    font-size: 1.4rem;
  }
  .cta-box p {
    font-size: 14px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Section Base */
.process-section {
  text-align: center;
  padding: 80px 20px;
  background: #f9fbff;
   font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Small tag */
.section-tag {
  display: inline-block;
  background: #eef4ff;
  color: #5a67d8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card */
.process-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Step Circle */
.step-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5acd, #00c6ff);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Card Headings */
.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Gradient Numbered List */
.gradient-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.gradient-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 45px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.gradient-list li::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9b7f7, #6dc9f9);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .process-card {
    padding: 25px 20px;
  }

  .step-circle {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .gradient-list li {
    padding-left: 40px;
    font-size: 13px;
  }

  .gradient-list li::before {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }
  .process-grid {
    gap: 18px;
  }
}


/* Promo Section */
.promo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #fdfdfd;
}

.promo-box {
  max-width: 700px;
  width: 100%;
  text-align: center;
  background: #f9f9ff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.promo-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.promo-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Gradient Button */
.promo-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  background: var(--purple-blue-gradient);
  transition: 0.3s ease;
}

.promo-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Note */
.promo-note {
  margin-top: 25px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-box {
    padding: 30px 20px;
  }

  .promo-box h2 {
    font-size: 20px;
  }

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

  .promo-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .promo-note {
    font-size: 12px;
  }
}

/*Pricing section*/


/* Section */
.pricing-section {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9ff;
}

.pricing-section .section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-section .section-header span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-section .section-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Cards Container */
.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 30px 20px 80px;
  width: 310px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Badge */
.pricing-card.popular .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple-blue-gradient);
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  font-weight: 600;
}

/* Icon */
.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-blue-gradient);
  color: #fff;
  font-size: 22px;
}

/* Titles */
.plan-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin: 5px 0;
  color: #d0d0ff;
}

.plan-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* List */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
  flex-grow: 1;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
}

.pricing-card ul li .num {
  background: var(--purple-blue-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Button Alignment */
.btn-wrap {
  margin-top: auto;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  background: var(--purple-blue-gradient);
  color: #fff;
  transition: 0.3s;
}

.pricing-card .btn:hover {
  opacity: 0.9;
}

.pricing-card .btn.outline {
  background: transparent;
  border: 2px solid #ccc;
  color: #444;
}

.pricing-card .btn.outline:hover {
  border-color: #6a5acd;
  color: #6a5acd;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-cards {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
    max-width: 380px;
    padding-bottom: 100px; /* space for button */
  }
}


/*Contact Us Section css*/

/* Section Header */
.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.contact-section .section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-section .section-header span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-section .section-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Container */
.contact-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left Info Box */
.contact-info {
  flex: 1;
  min-width: 320px;
  background: var(--purple-blue-gradient);
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.4);
  margin: 25px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 20px 0;
}

.info-item i {
  font-size: 20px;
  background: #fff;
  color: #6a5acd;
  border-radius: 50%;
  padding: 10px;
  min-width: 40px;
  text-align: center;
}

.info-item span {
  font-size: 14px;
  opacity: 0.9;
}

.info-item strong {
  font-size: 16px;
  display: block;
  margin-top: 4px;
}

/* Right Form Box */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
  border: 2px solid #299cec;
}

.contact-form h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 700;
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.form-group {
  display: flex;
  gap: 15px;
}

.form-group input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

textarea {
  resize: none;
  min-height: 100px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  background: var(--purple-blue-gradient);
  color: #fff;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.9;
}

.btn.white {
  background: #fff;
  color: #6a5acd;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 600px;
  }

  .contact-info {
    text-align: center;
  }

  .info-item {
    justify-content: center;
    text-align: left;
  }
}

/* ✅ Extra Small (320px – 480px) */
@media (max-width: 480px) {
  .contact-section {
    padding: 60px 16px;
  }

  .contact-section .section-header h2 {
    font-size: 26px;
  }

  .contact-section .section-header p {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-group input,
  textarea {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------Footer css---------*/

/* Footer */
.footer {
  background: #fff;
  padding: 60px 20px 0;
  color: #333;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #eee;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 35px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgb(51, 51, 51);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gradient-start);
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--gradient-start);
}

.footer-contact a {
  color: rgb(51, 51, 51);
  font-weight: 500;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gradient-start);
}

.footer-rating {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.footer-rating i {
  color: #fbbf24;
  margin-right: 5px;
}

/* CTA Section */
.footer-cta {
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.footer-cta h2 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-cta h2 span {
  color: #f1f1f1;
}

.footer-cta p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: #fff;
  color: var(--gradient-start);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #f1f1f1;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 16px;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 16px;
  color: rgb(51, 51, 51);
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gradient-start);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-cta {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-cta h2 {
    font-size: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}


/*Services single page css start*/

/* ==============================
   Hero Section
================================= */
.va-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.va-hero .va-badge {
  display: inline-block;
  background: #f3f0ff;
  color: #6a5acd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}

.va-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--va-text-dark);
}

.va-hero h1 span {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.va-hero p {
  font-size: 18px;
  color: var(--va-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ==============================
   Stats Section
================================= */
.va-stats {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  padding: 60px 0;
  color: #fff;
}

.va-stats .va-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.va-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.va-stat h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.va-stat p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Hover effect */
.va-stat:hover h2 {
  transform: scale(1.1);
  color: #fff;
}

/* ==============================
   Responsive
================================= */
@media (max-width: 992px) {
  .va-hero h1 {
    font-size: 32px;
  }
  .va-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .va-hero h1 {
    font-size: 26px;
  }
  .va-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Our Process Section
========================= */
.va-process-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.va-process-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

/* Gradient text for 'Our' */
.gradient-text {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Process Grid */
.va-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Step Card */
.va-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.va-process-step:hover {
  transform: translateY(-5px);
}

/* Number Circle */
.va-process-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5acd, #00c6ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(106, 90, 205, 0.25);
}

/* Step Title */
.va-process-step h3 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
  max-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  .va-process-header h2 {
    font-size: 26px;
  }

  .va-process-grid {
    gap: 25px;
  }

  .va-process-circle {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .va-process-step h3 {
    font-size: 15px;
  }
}


/* =========================
   Why Choose Us Section
========================= */
.va-why-choose-section {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

/* Container (max-width 1200px) */
.va-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.va-why-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.va-why-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

/* Gradient for 'Why' */
.gradient-text {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Grid */
.va-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Card */
.va-why-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 4px 20px rgba(106, 90, 205, 0.08);
  transition: all 0.3s ease;
  max-width: 360px;
}

.va-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(106, 90, 205, 0.18);
}

/* Icon */
.va-why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #6a5acd, #00c6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0, 198, 255, 0.25);
}

/* Card Content */
.va-why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.va-why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .va-why-header h2 {
    font-size: 26px;
  }

  .va-why-card {
    padding: 30px 20px;
  }

  .va-why-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}


/*About Us Page Css*/

/* =========================
   About Section
========================= */
.about-section {
  background: linear-gradient(135deg, #fce7ff, #e0f3ff);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
}

.about-section .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 18px;
  color: #374151;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* =========================
   About Cards
========================= */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.about-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
  flex: 1 1 45%;
  max-width: 550px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
}

.about-icon.mission {
  background: linear-gradient(135deg, #a855f7, #6366f1);
}

.about-icon.vision {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.about-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-card p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
  
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .about-card {
    flex: 1 1 100%;
  }
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .about-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  .about-text {
    font-size: 15px;
  }
}


/* =========================
   Core Values Section
========================= */
.core-values-section {
  background: linear-gradient(135deg, #f9f5ff, #eef9ff);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.core-values-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
}

.core-values-section .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #4b5563;
  font-size: 18px;
  margin-bottom: 60px;

}

/* =========================
   Values Grid
========================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--purple-blue-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotate(10deg) scale(1.05);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.value-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;

}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  .value-card {
    padding: 30px 20px;
  }
}


/* =========================
   Time Line Section
/*=========================


/* =========================
   Our Journey Section
========================= */
.our-journey-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}



/* Gradient Heading */
.our-journey-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.our-journey-section p.section-subtitle {
  text-align: center;
  color: #0000;
  margin-bottom: 60px;
  font-size: 15px;
}

/* Timeline Container */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* Vertical Line in the Middle */
.timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background: var(--purple-blue-gradient);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

/* Left Side */
.timeline-item.left {
  left: 0;
  text-align: right;
}

/* Right Side */
.timeline-item.right {
  left: 50%;
}

/* Timeline Content Box */
.timeline-content {
  background: #fff;
  border: 1px solid #e8e8f1;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

/* Circle Icon */
.timeline-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-blue-gradient);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* For right side icon */
.timeline-item.right .timeline-icon {
  left: -20px;
  right: auto;
}

/* Year Styling */
.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #6a5acd;
  margin-bottom: 6px;
}

/* Title Styling */
.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

/* Text */
.timeline-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    text-align: left !important;
  }

  .timeline-item.right {
    left: 0%;
  }

  .timeline-icon {
    left: -10px !important;
    right: auto;
  }
}


/* =========================
   Meet Our Team Section
========================= */
.va-team-section {
  padding: 80px 20px;
  background: #f2f7ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.va-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #000;
}

.va-section-title span {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.va-section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}

/* Team Grid */
.va-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Team Card */
.va-team-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, #6a5acd, #00c6ff);
  background-origin: border-box;
  background-clip: content-box, border-box;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
}

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

/* Image Hover Effect */
.va-team-img {
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eee;
}

.va-team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.va-team-card:hover .va-team-img img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Team Info */
.va-team-info {
  padding: 25px 20px;
  text-align: center;
  transition: color 0.3s ease;
}

.va-team-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.va-team-info .role {
  font-weight: 500;
  color: #6a5acd;
  margin-bottom: 10px;
}

.va-team-info .desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover Text Glow */
.va-team-card:hover .va-team-info h3 {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.va-team-card:hover .va-team-info .role {
  color: #00c6ff;
}

/* Responsive */
@media (max-width: 768px) {
  .va-team-info {
    text-align: center;
  }
}


/* =========================
   Call To Action Section about page
========================= */
.va-cta-section {
  background:#ffff;
  padding: 100px 20px;
  text-align: center;
 
}

.va-cta-container {
  background: #f2f7ff;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(106, 90, 205, 0.15);
}

/* Heading */
.va-cta-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.va-cta-heading span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle Text */
.va-cta-text {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Buttons */
.va-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Primary Button */
.btn-primary {
  background: var(--purple-blue-gradient);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background: var(--purple-blue-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .va-cta-heading {
    font-size: 1.6rem;
  }
  .va-cta-container {
    padding: 40px 20px;
  }
}


/*Contact us page css*/

.get-in-touch {
  background: linear-gradient(180deg, #fdfbff 0%, #f7f9ff 100%);
  padding: 80px 20px;
}

.get-in-touch .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.get-in-touch .section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.get-in-touch .section-header h2 span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.get-in-touch .section-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== Contact Info Cards ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Gradient border with inner white card */
.contact-card {
  background: linear-gradient(#fff, #fff) padding-box,
              var(--purple-blue-gradient) border-box;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(106,90,205,0.25);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106,90,205,0.08);
  color: #6a5acd;
  font-size: 28px;
  transition: 0.4s;
  animation: float 3s ease-in-out infinite;
}

.contact-card:hover .icon {
  background: var(--purple-blue-gradient);
  color: #fff;
}

/* Gradient title text */
.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.contact-card p a {
  color: #555;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

.contact-card p a:hover {
  color: var(--gradient-end);
  text-decoration: underline;
}

/* Floating icon animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .get-in-touch .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .get-in-touch {
    padding: 60px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    max-width: 400px;
    margin: auto;
  }

  .get-in-touch .section-header h2 {
    font-size: 30px;
  }

  .get-in-touch .section-header p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 25px 20px;
  }
  .contact-card .icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}


/* =========================
   Unique Contact + FAQ Section
========================= */
.unique-contact-faq-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.unique-contact-faq-section .unique-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.unique-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.unique-section-header h2 {
  font-size: 34px;
  font-weight: 700;
}

.unique-section-header h2 span {
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.unique-section-header p {
  color: #666;
  margin-top: 10px;
}

/* Layout Wrapper */
.unique-contact-faq-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Contact Form & FAQ Box */
.unique-contact-form,
.unique-faq-section {
  flex: 1 1 500px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    var(--purple-blue-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.unique-contact-form h3,
.unique-faq-section h3 {
  font-size: 22px;
  font-weight: 600;
  background: var(--purple-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Form */
.unique-contact-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.unique-contact-form input,
.unique-contact-form select,
.unique-contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.unique-contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: var(--purple-blue-gradient);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.unique-contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(106, 90, 205, 0.2);
}

/* Success Message */
.unique-success-message {
  margin-top: 15px;
  text-align: center;
  font-size: 15px;
  color: #28a745;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.unique-success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
.unique-faq-section p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.unique-faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.unique-faq-question {
  cursor: pointer;
  padding: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.unique-faq-question span {
  font-size: 20px;
  font-weight: 600;
  color: var(--gradient-start);
  transition: 0.3s;
}

.unique-faq-item.active .unique-faq-question {
  background: #f0f0ff;
  color: var(--gradient-end);
}

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

.unique-faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #555;
  background: #fff;
  transition: all 0.4s ease;
  padding: 0 15px;
}

.unique-faq-item.active .unique-faq-answer {
  max-height: 200px;
  padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .unique-contact-faq-wrapper {
    flex-direction: column;
  }

  .unique-contact-form,
  .unique-faq-section {
    padding: 25px;
  }

  .unique-section-header h2 {
    font-size: 28px;
  }
}

/* =========================
   Location Section Styling
========================= */
/* =========================
   Clean Location Section
========================= */
.clean-location-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.clean-location-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.clean-location-section .section-header h2 span {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clean-location-section .section-header p {
  color: #000;
  font-size: 15px;
  margin-bottom: 50px;
}

/* Wrapper */
.location-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Info Box */
.location-info {
  flex: 1;
  min-width: 300px;
  background: #f1f2f6;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
}

.location-info .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #6a5acd;
}

.location-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.location-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.location-info .map-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* Map Box */
.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .location-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .location-info {
    padding: 30px 20px;
  }

  .location-info h4 {
    font-size: 20px;
  }

  .location-info p {
    font-size: 14px;
  }

  .location-info .map-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}


<!-- =========================
     Portfolio page CSS
========================= -->
.portfolio-section {
  font-family: 'Inter', sans-serif;
  /*padding: 80px 20px;*/
  background: #fcfbff;
  text-align: center;
}

/* Section Header */
.portfolio-section .section-header {
padding: 80px 20px;
}

.portfolio-section .section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-section .section-header span {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-section .section-header p {
  color: #666;
  font-size: 15px;
}

/* Filter Buttons */
.portfolio-filters {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  color: #fff;
  border-color: transparent;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: start;
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #6a5acd, #00c6ff) border-box;
  transition: all 0.4s ease;
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-info {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.portfolio-info h3 {
  font-size: 18px;
  color: #007aff;
  margin-bottom: 5px;
  font-weight: 600;
}

.portfolio-info p {
  color: #555;
  font-size: 14px;
}

/* View More Button */
.view-more {
  margin-top: 40px;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.view-more-btn {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  transform: scale(1.05);
}

.section-header {
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 15px;
  }

  .portfolio-section .section-header h2 {
    font-size: 28px;
  }

  .portfolio-item img {
    height: 220px;
  }
}

/* Fix spacing when fewer items exist */
@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    justify-content: center;
  }
}
}

/* =========================
   Login & Signup Section
========================= */
.clean-auth-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.clean-auth-section .auth-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
   
}

.auth-header {
    text-align: center;
    padding: 80px 20px;
}

.clean-auth-section .auth-header h2 span {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clean-auth-section .auth-header p {
  font-size: 15px;
  color: #000;
  margin-bottom: 40px;
}

/* Tabs */
.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: -30px;
}

.tab-btn {
  padding: 10px 30px;
  background: #f1f2f6;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  color: #fff;
}

/* Forms */
.auth-forms {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 50px;
}

.auth-form {
  display: none;
  background: #f1f2f6;
  padding: 40px 30px;
  border-radius: 16px;
}

.auth-form.active {
  display: block;
}

.auth-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.auth-form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-forms {
    width: 100%;
  }

  .tab-btn {
    padding: 8px 20px;
  }
}

/* =========================
   Privacy Policy page css
========================= */

.privacy-header {
    text-align: center;
}
.clean-privacy-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.clean-privacy-section .privacy-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.clean-privacy-section .privacy-header h2 span {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clean-privacy-section .privacy-header p {
  font-size: 15px;
  margin-bottom: 50px;
  color: #000;
}

/* Content */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
}

.privacy-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.privacy-content a {
  color: #6a5acd;
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .clean-privacy-section {
    padding: 60px 15px;
  }

  .privacy-content h3 {
    font-size: 20px;
  }

  .privacy-content p {
    font-size: 14px;
  }
}


/* =========================
   Terms & Conditions page css
========================= */
.clean-terms-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.terms-header {
    text-align: center;
}

.clean-terms-section .terms-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.clean-terms-section .terms-header h2 span {
  background: linear-gradient(90deg, #6a5acd, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clean-terms-section .terms-header p {
  font-size: 15px;
  margin-bottom: 50px;
  color: #000;
}

/* Content */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.terms-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
}

.terms-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.terms-content a {
  color: #6a5acd;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .clean-terms-section {
    padding: 60px 15px;
  }

  .terms-content h3 {
    font-size: 20px;
  }

  .terms-content p {
    font-size: 14px;
  }
}


