:root {
  /* Premium Light Color Palette */
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --secondary: #f59e0b;
  --bg-light: #ffffff;
  --bg-surface: #f8fafc;
  --bg-surface-alt: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --accent: #7c3aed;
  --border-color: #e2e8f0;
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --grad-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  /*letter-spacing: 0.02em;*/
  line-height: 1.2;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}


/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mycontainer_new {
  width: 96%;
  max-width: 96%;
  margin: 0 auto;
  padding: 0 1.5rem;

}

.section-padding {
  /*padding: 6rem 0;*/
  padding: 6rem 0;
}

.bg-surface {
  /*background: linear-gradient(135deg, #2d1f3d 0%, #4a2c5a 50%, #7c3aed 100%);*/
  /*background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);*/
  background: linear-gradient(135deg, #fdebf5 0%, #facee2 100%);
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--grad-primary);
  color: white !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
}

.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
  color: white !important;
}

.premium-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s ease;
}

.premium-btn-outline:hover {
  background: var(--grad-primary);
  color: white !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}

/* Icon Boxes */
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.service-card:hover .icon-box {
  background: var(--primary);
  color: white !important;
}

/* Hero Specific */
.hero-section {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent), radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.05), transparent);
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
  z-index: -1;
}

/* Hero Section V2 - Slider */
.hero-v2 {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-v2 .carousel,
.hero-v2 .carousel-inner,
.hero-v2 .carousel-item {
  height: 100%;
}

.hero-v2 .carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-v2 .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.2) 100%);
  z-index: 1;
}

.hero-v2 .carousel-caption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-v2 .slide-content {
  max-width: 700px;
}

.hero-v2 .slide-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-v2 .slide-title {
  font-size: 4.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-v2 .slide-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-v2 .slide-btns {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-v2 .carousel-control-prev,
.hero-v2 .carousel-control-next {
  width: 5%;
  z-index: 3;
}

.hero-v2 .carousel-indicators {
  justify-content: flex-start;
  margin-left: 1.5rem;
  margin-bottom: 3rem;
  max-width: 1280px;
  margin-right: auto;
  z-index: 3;
}

.hero-v2 .carousel-indicators [data-bs-target] {
  width: 40px;
  height: 4px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all 0.3s ease;
}

.hero-v2 .carousel-indicators .active {
  background-color: var(--primary);
  width: 60px;
}

@media (max-width: 768px) {
  .hero-v2 .slide-title {
    font-size: 2.8rem;
  }

  .hero-v2 .carousel-caption {
    text-align: center;
  }

  .hero-v2 .carousel-indicators {
    justify-content: center;
    margin-left: 0;
  }
}

/* Accordion */
.accordion-premium .accordion-item {
  background: #f8faff;
  border: none;
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-base);
}

.accordion-premium .accordion-item:hover {
  background: #f0f4ff;
}

.accordion-premium .accordion-button {
  background: transparent;
  color: var(--text-main);
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: none;
}

.accordion-premium .accordion-button::after {
  background-image: none;
  content: '+';
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  background: #0f172a;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.accordion-premium .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
}

.accordion-premium .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  background: var(--primary);
}

.accordion-premium .accordion-body {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, #693DB5 0%, #8b5cf6 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4rem;
}

.contact-cta h2,
.contact-cta p {
  color: white !important;
}

.contact-cta .text-gradient {
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* About Section */
.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  min-width: 150px;
  z-index: 2;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.icon-box-sm {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

/* Testimonials */
.testimonial-card {
  border-radius: var(--radius-md);
}

.avatar-sm {
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  font-weight: 700;
}

.italic {
  font-style: italic;
}

/* Services Stripe - Infinite Marquee */
.services-stripe {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: white;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0 1rem;
  flex-shrink: 0;
}

.marquee-track .marquee-dot {
  font-size: 0.6rem;
  opacity: 0.5;
  padding: 0 0.25rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Project Card */
.project-card {
  transition: var(--transition-base);
}

.project-card:hover {
  transform: translateY(-10px);
}

.glass-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  color: var(--primary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.glass-icon:hover {
  background: var(--primary);
  color: white;
}

/* Project Card V2 - Modern Design */
.project-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 380px;
}

.project-card-v2 .project-img-v2 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  background-color: #f1f5f9;
}

.project-card-v2 .project-overlay-v2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all 0.4s ease;
}

.project-card-v2:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary);
}

.project-card-v2:hover .project-img-v2 {
  transform: scale(1.1);
}

.project-card-v2 .project-tag-v2 {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.project-card-v2 .project-title-v2 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.project-card-v2 .project-desc-v2 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.project-card-v2:hover .project-desc-v2 {
  opacity: 1;
  max-height: 70px;
}

.project-card-v2 .project-link-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  margin-top: auto;
}

.project-card-v2 .project-link-v2 i {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.project-card-v2 .project-link-v2:hover i {
  background: var(--primary);
  transform: rotate(-45deg);
}

/* Blog Card */
.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .project-card-v2 {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .experience-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }
}

/* Core Services V2 */
.services-v2 {
  padding: 11rem 0;
}

.service-card-v2 {
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-card-v2 .service-icon-v2 {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-v2 .service-icon-v2 i {
  font-size: 2.5rem;
}

.service-card-v2 .service-title-v2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.service-card-v2 .service-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.service-card-v2 .service-tag-v2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.5px;
}

.service-card-v2 .service-tag-v2:not(:last-child)::after {
  content: '|';
  margin-left: 0.5rem;
  color: #cbd5e1;
}

/* Intro Card (Purple) */
.service-card-v2.intro-card {
  background-color: #7c3aed;
  color: #ffffff;
}

.service-card-v2.intro-card .service-title-v2 {
  color: #ffffff;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.service-card-v2.intro-card .service-desc-v2 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.service-card-v2.intro-card .learn-more-v2 {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

/* Color Themes */
.theme-blue {
  background-color: #eff6ff !important;
  border-bottom: 4px solid #3b82f6 !important;
  background-image: none !important;
}

.theme-orange {
  background-color: #fff7ed !important;
  border-bottom: 4px solid #f97316 !important;
  background-image: none !important;
}

.theme-pink {
  background-color: #fdf2f8 !important;
  border-bottom: 4px solid #ec4899 !important;
  background-image: none !important;
}

.theme-cyan {
  background-color: #ecfeff !important;
  border-bottom: 4px solid #06b6d4 !important;
  background-image: none !important;
}

.theme-green {
  background-color: #f0fdf4 !important;
  border-bottom: 4px solid #22c55e !important;
  background-image: none !important;
}

.theme-purple {
  background-color: #f5f3ff !important;
  border-bottom: 4px solid #8b5cf6 !important;
  background-image: none !important;
}

.theme-red {
  background-color: #fef2f2 !important;
  border-bottom: 4px solid #ef4444 !important;
  background-image: none !important;
}

.theme-teal {
  background-color: #f0fdfa !important;
  border-bottom: 4px solid #14b8a6 !important;
  background-image: none !important;
}

.theme-indigo {
  background-color: #eef2ff !important;
  border-bottom: 4px solid #6366f1 !important;
  background-image: none !important;
}

@media (max-width: 768px) {
  .service-card-v2 {
    padding: 2rem;
  }
}

/* Industries Section */
.industries-section {
  background: linear-gradient(135deg, #fffcf9 0%, #fff5f5 100%);
}

.industry-box {
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 24px 24px 0 24px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.industry-box i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.industry-box span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.industry-subtitle {
  color: #ec4899;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.industry-title {
  font-size: 3rem;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.industry-desc {
  color: #64748b;
  font-size: 1rem;
  max-width: 450px;
}

@media (max-width: 992px) {
  .industry-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .industry-box {
    padding: 1.25rem 0.75rem;
  }

  .industry-box i {
    font-size: 1.5rem;
  }

  .industry-box span {
    font-size: 0.75rem;
  }
}

/* Header V3 */
.header-v3-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: all 0.4s ease;
}

.header-v3-nav.scrolled {
  /*background: #ffffff;*/
  /*background: linear-gradient(90deg, #eadfff 25%, #fff 50%, #e6fffc 100%);*/
  background: #FFF;
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-v3-nav.hide {
  transform: translateY(-100%);
}

.header-v3-nav.scrolled .brand-text-v3 {
  color: #0f172a;
}

.header-v3-nav.scrolled .brand-designer {
  color: #7c3aed !important;
}

.header-v3-nav.scrolled .nav-link {
  color: #475569 !important;
}

/* Scrolled state - Hover effect (light header) */
.header-v3-nav.scrolled .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(79, 70, 229, 0.08);
}

/* Scrolled state - Active link (light header) */
.header-v3-nav.scrolled .nav-link.active {
  color: var(--primary) !important;
  background: rgba(79, 70, 229, 0.12);
}

.header-v3-nav.scrolled .phone-btn-v3 {
  background: var(--primary);
  color: white;
}

.logo-img-v3 {
  height: 40px;
  width: auto;
  border-radius: 12px;
}

.brand-text-v3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.header-v3-nav .nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

/* Default state - Hover effect (transparent header) */
.header-v3-nav .nav-link:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.15);
}

/* Default state - Active link (transparent header) */
.header-v3-nav .nav-link.active {
  color: white !important;
  background: rgba(255, 255, 255, 0.2);
}

.phone-btn-v3 {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.phone-btn-v3:hover {
  background: var(--primary);
  color: white;
}

.quote-btn-v3 {
  background: linear-gradient(90deg, #fed101, #FED0E3);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quote-btn-v3:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
  color: #000;
}

.theme-toggle-v3 {
  background: #f59e0b;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 1.1rem;
  cursor: pointer;
}

/* Hero V3 */
.hero-v3-section {
  position: relative;
  min-height: 100vh;

  /* Deep Indigo */
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
}

.hero-v3-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-40-39c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm43 38c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM46 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm33 22c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM19 53c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm57-20c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM58 19c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM33 33c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM23 8c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 66c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM44 69c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm19-18c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm26-13c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-9 44c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM70 90c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-54-24c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM32 55c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm48-11c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-13 32c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM24 22c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm44-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM51 51c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-26 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM10 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm40 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm40 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-40-2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-40-2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm40-40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm40 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.text-primary {
  color: #fed101 !important;
  text-decoration: none;
}

.hero-v3-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: #fed101;
  margin-bottom: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.hero-v3-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.case-study-btn-v3 {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-study-btn-v3:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
  color: white;
}

.badge-item-v3 {
  display: flex;
  flex-direction: column;
}

.badge-text-v3 {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.badge-sub-v3 {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Swiper Slider */
.heroV3Swiper {
  padding: 2rem 0;
}

.service-card-v3 {
  border-radius: 30px;
  padding: 0;
  height: 450px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: grab;
  position: relative;
  overflow: hidden;
}

.service-card-v3:active {
  cursor: grabbing;
}

.service-card-v3:hover {
  transform: translateY(-15px) scale(1.02);
}

.card-img-v3 {
  height: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card-v3:hover .card-img-v3 img {
  transform: scale(1.1);
}

.card-content-v3 {
  padding: 1.5rem 2rem 2rem;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

.card-title-v3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: white;
}

/* Card Themes V3 */
.v3-theme-orange {
  background: linear-gradient(180deg, #f97316, #ea580c);
}

.v3-theme-blue {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
}

.v3-theme-purple {
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
}

.v3-theme-magenta {
  background: linear-gradient(180deg, #d946ef, #c026d3);
}

.v3-theme-indigo {
  background: linear-gradient(180deg, #6366f1, #4f46e5);
}

@media (max-width: 992px) {
  .hero-v3-title {
    font-size: 3.5rem;
  }

  .hero-v3-section {
    padding-top: 100px;
  }
}

/* Products Showcase Section */
.products-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
  overflow: hidden;
}

.products-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}


.badge-pill-primary {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem auto;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(79, 70, 229, 0.3);
}

/* Product Card Variants */
.product-card-primary {
  background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
}

.product-card-gradient {
  background: linear-gradient(135deg, #fff 0%, #fff5eb 100%);
}

.product-card-success {
  background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.product-card-warning {
  background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.product-card-gradient .product-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.product-card-success .product-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.product-card-warning .product-icon {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 10px 25px rgba(251, 146, 60, 0.3);
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
}

.product-badge {
  padding: 0.4rem 1rem;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.badge-featured {
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.product-badge.badge-new {
  background: linear-gradient(90deg, #10b981, #059669);
}

.product-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.product-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.product-features li {
  padding: 0.75rem 0;
  color: #475569;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features i {
  color: #10b981;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.product-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Barlow Condensed', sans-serif;
}

.product-card-gradient .stat-number {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card-success .stat-number {
  background: linear-gradient(90deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card-warning .stat-number {
  background: linear-gradient(90deg, #fb923c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Theme-specific stat labels */
.product-card-primary .stat-label {
  color: #4f46e5;
}

.product-card-gradient .stat-label {
  color: #f59e0b;
}

.product-card-success .stat-label {
  color: #059669;
}

.product-card-warning .stat-label {
  color: #f97316;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.btn-product-primary {
  flex: 1;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-product-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  color: white;
}

.product-card-gradient .btn-product-primary {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.product-card-gradient .btn-product-primary:hover {
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.product-card-success .btn-product-primary {
  background: linear-gradient(90deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.product-card-success .btn-product-primary:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.product-card-warning .btn-product-primary {
  background: linear-gradient(90deg, #fb923c, #f97316);
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.product-card-warning .btn-product-primary:hover {
  box-shadow: 0 8px 25px rgba(251, 146, 60, 0.4);
}

.btn-product-secondary {
  padding: 0.875rem 1.5rem;
  background: white;
  color: #4f46e5;
  border: 2px solid #4f46e5;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-product-secondary:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-2px);
}

.product-card-gradient .btn-product-secondary {
  color: #f59e0b;
  border-color: #f59e0b;
}

.product-card-gradient .btn-product-secondary:hover {
  background: #f59e0b;
  color: white;
}

.product-card-success .btn-product-secondary {
  color: #10b981;
  border-color: #10b981;
}

.product-card-success .btn-product-secondary:hover {
  background: #10b981;
  color: white;
}

.product-card-warning .btn-product-secondary {
  color: #fb923c;
  border-color: #fb923c;
}

.product-card-warning .btn-product-secondary:hover {
  background: #fb923c;
  color: white;
}

.products-cta-box {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  padding: 3rem 2rem;
  border-radius: 24px;
  color: white;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.products-cta-box h3 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
}

.products-cta-box .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    padding: 2rem 1.5rem;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-product-secondary {
    white-space: normal;
  }

  .product-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .products-cta-box {
    padding: 2rem 1.5rem;
  }

  .products-cta-box h3 {
    font-size: 1.5rem;
  }
}

/* Service Areas Section */
.service-areas-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
  color: #0f172a;
  overflow: hidden;
}

.service-areas-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.5;
}

.badge-pill-secondary {
  display: block;
  width: fit-content;
  margin: 0 0 1.5rem 0;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, #10b981, #059669);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-areas-section .section-title {
  color: #0f172a;
}

.service-areas-section .lead {
  color: #475569;
}

.service-areas-stats {
  margin: 2rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #4f46e5, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.service-areas-section .stat-label {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.cities-container {
  background: white;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cities-category {
  margin-bottom: 2rem;
}

.category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}

.category-title i {
  color: #10b981;
  font-size: 1.2rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.city-card {
  background: #f8f9ff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--city-color, #4f46e5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.city-card:hover::before {
  opacity: 0.1;
}

.city-card:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--city-color, #4f46e5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: white;
}

.city-card i {
  font-size: 1.5rem;
  color: var(--city-color, #4f46e5);
  position: relative;
  z-index: 1;
}

.city-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  position: relative;
  z-index: 1;
}

.metro-city {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.05));
}

.metro-city i {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.tier2-city {
  --city-color: #10b981;
}

.tier2-city i {
  color: #10b981;
}

.cities-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
}

.city-tag {
  background: #f8f9ff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.city-tag:hover {
  background: white;
  border-color: #10b981;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.city-tag i {
  color: #10b981;
  font-size: 0.9rem;
}

.service-areas-banner {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.4);
  position: relative;
  overflow: hidden;
}

.service-areas-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
  opacity: 0.2;
}

.service-areas-banner h3 {
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
}

.service-areas-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.btn-banner-cta {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: white;
  color: #4f46e5;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #4f46e5;
}

/* Responsive */
@media (max-width: 992px) {
  .cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .cities-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .cities-container {
    padding: 1.5rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid-compact {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 2rem;
  }

  .service-areas-banner {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .service-areas-banner h3 {
    font-size: 1.5rem;
  }

  .btn-banner-cta {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Trust Signals & Stats Section */
.trust-signals-section {
  position: relative;
  background: linear-gradient(135deg, #fafbff 0%, #f8f9ff 100%);
  overflow: hidden;
}

.trust-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.badge-pill-trust {
  display: block;
  width: fit-content;
  margin: 0 auto 1.5rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Trust Statistics Cards */
.trust-stat-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.trust-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.trust-stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
  font-size: 2rem;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-family: 'Barlow Condensed', sans-serif;
}

.stat-text {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Technologies Section */
.trust-subtitle {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.tech-badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.tech-badge {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tech-badge:hover {
  transform: translateY(-3px);
  border-color: var(--tech-color);
  background: var(--tech-color);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tech-badge i {
  font-size: 1.25rem;
  color: var(--tech-color);
  transition: color 0.3s ease;
}

.tech-badge:hover i {
  color: white;
}

/* Achievements Cards */
.achievement-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotate(-5deg);
}

.achievement-icon i {
  font-size: 2.5rem;
  color: white;
}

.achievement-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.achievement-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Trust Banner */
.trust-banner {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.trust-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.trust-banner-title {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.trust-banner-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.btn-trust-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: #4f46e5;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.btn-trust-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #4f46e5;
  background: #f0fdf4;
}

/* Counter Animation */
.counter-trust {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .trust-subtitle {
    font-size: 1.5rem;
  }

  .tech-badges-container {
    gap: 0.5rem;
  }

  .tech-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }

  .trust-banner-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .trust-stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .tech-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .tech-badge i {
    font-size: 1.1rem;
  }

  .achievement-card {
    padding: 2rem 1.5rem;
  }

  .achievement-icon {
    width: 70px;
    height: 70px;
  }

  .achievement-icon i {
    font-size: 2rem;
  }

  .trust-banner {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .trust-banner-title {
    font-size: 1.5rem;
  }

  .trust-banner-desc {
    font-size: 0.95rem;
  }

  .btn-trust-cta {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 0.875rem;
  }
}

/* ========================================
   WAVE DIVIDERS & FLOATING SHAPES
   For Hero V3, Core Services, From My Blog
   ======================================== */

/* Floating Shapes - Decorative Background Elements */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatShape 20s ease-in-out infinite;
}

/* Hero V3 Floating Shapes - Match #312e81 background */
.hero-v3-section .floating-shapes .shape {
  background: linear-gradient(135deg, rgba(254, 209, 1, 0.3), rgba(124, 58, 237, 0.2));
}

.hero-v3-section .shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.hero-v3-section .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: 5%;
  animation-delay: 5s;
}

.hero-v3-section .shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: -80px;
  animation-delay: 10s;
}

/* Core Services / Blog Section Floating Shapes - Match purple gradient */
.services-v2 .floating-shapes .shape,
#blog .floating-shapes .shape {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(124, 58, 237, 0.1));
}

.services-v2 .shape-1,
#blog .shape-1 {
  width: 350px;
  height: 350px;
  top: -120px;
  right: -120px;
  animation-delay: 0s;
}

.services-v2 .shape-2,
#blog .shape-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 10%;
  animation-delay: 6s;
}

.services-v2 .shape-3,
#blog .shape-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: -60px;
  animation-delay: 12s;
}

/* Float Shape Animation */
@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-40px) rotate(180deg);
  }
}

/* Wave Dividers */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

.wave-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Wave at bottom of Hero V3 - Transitions to white (About section) */
.wave-divider-hero-bottom {
  bottom: 0;
}

.wave-divider-hero-bottom svg path {
  fill: #ffffff;
}

/* Top Wave for sections with white background above */
.wave-divider-section-top {
  top: 0;
}

/* Bottom Wave for sections transitioning to white background */
.wave-divider-section-bottom {
  bottom: 0;
}

/* Responsive - Hide floating shapes on mobile for performance */
@media (max-width: 768px) {
  .floating-shapes .shape {
    display: none;
  }

  .wave-divider {
    height: 60px;
  }
}

/* =============================================
   MODERN DROPDOWN MENU - Hover Triggered
   Siva Designer - Premium Navigation Dropdown
   ============================================= */

/* Hover trigger for dropdown on desktop */
@media (min-width: 992px) {
  .dropdown-hover:hover>.dropdown-menu-modern {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-hover>.dropdown-menu-modern {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* Modern Dropdown Menu Container */
.dropdown-menu-modern {
  min-width: 320px;
  padding: 0.75rem;
  margin-top: 0.5rem !important;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Dropdown Items */
.dropdown-menu-modern .dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent;
}

.dropdown-menu-modern .dropdown-item:hover,
.dropdown-menu-modern .dropdown-item:focus {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  color: #4f46e5;
  transform: translateX(5px);
}

/* Dropdown Item Icons */
.dropdown-menu-modern .dropdown-item>i:first-child {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
  color: #4f46e5;
  border-radius: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.dropdown-menu-modern .dropdown-item:hover>i:first-child {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  transform: scale(1.05);
}

/* Item Content (Title + Description) */
.dropdown-menu-modern .item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-menu-modern .item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a2e;
  line-height: 1.3;
}

.dropdown-menu-modern .item-desc {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.3;
}

.dropdown-menu-modern .dropdown-item:hover .item-title {
  color: #4f46e5;
}

/* Divider */
.dropdown-divider-modern {
  height: 1px;
  margin: 0.5rem 1rem;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* View All Services Link */
.dropdown-menu-modern .dropdown-item-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  margin-top: 0.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  font-weight: 600;
  color: #4f46e5;
}

.dropdown-menu-modern .dropdown-item-all>i:first-child {
  width: auto;
  height: auto;
  background: none;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.dropdown-menu-modern .dropdown-item-all>i:last-child {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.dropdown-menu-modern .dropdown-item-all:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  transform: none;
}

.dropdown-menu-modern .dropdown-item-all:hover>i:last-child {
  transform: translateX(5px);
}

/* Dropdown Toggle Arrow Animation */
.dropdown-hover .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown-hover:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Mobile Responsive Dropdown */
@media (max-width: 991px) {
  .dropdown-menu-modern {
    position: static !important;
    width: 100%;
    min-width: auto;
    margin: 0.5rem 0 !important;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: none;
    border-radius: 12px;
  }

  .dropdown-menu-modern .dropdown-item {
    padding: 0.75rem;
    color: white;
  }

  .dropdown-menu-modern .dropdown-item>i:first-child {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
  }

  .dropdown-menu-modern .item-title {
    color: white;
  }

  .dropdown-menu-modern .item-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
  }

  .dropdown-menu-modern .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .dropdown-menu-modern .dropdown-item:hover .item-title {
    color: white;
  }

  .dropdown-menu-modern .dropdown-item:hover>i:first-child {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: none;
  }

  .dropdown-divider-modern {
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem;
  }

  .dropdown-menu-modern .dropdown-item-all {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }

  .dropdown-menu-modern .dropdown-item-all:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/* Scrolled Header - Ensure Light Mode Dropdown */
.header-v3-nav.scrolled .dropdown-menu-modern {
  background: rgba(255, 255, 255, 0.98);
}