/* Design System Variables from Tailwind V4 globals.css */
:root {
  --font-size: 14px;
  --background: #ffffff;
  --foreground: #26374d;
  --card: #ffffff;
  --card-foreground: #26374d;
  --popover: #ffffff;
  --popover-foreground: #26374d;
  --primary: #0b50e8;
  --primary-foreground: #ffffff;
  --secondary: #f5f9fe;
  --secondary-foreground: #26374d;
  --muted: #ececf0;
  --muted-foreground: #253a52;
  --accent: #e9ebef;
  --accent-foreground: #26374d;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(11, 80, 232, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: #0b50e8;
  --chart-1: #0b50e8;
  --chart-2: #1383ef;
  --chart-3: #64ac57;
  --chart-4: #16fafd;
  --chart-5: #158cce;
  --radius: 0.625rem;
  --sidebar: #f5f9fe;
  --sidebar-foreground: #26374d;
  --sidebar-primary: #0b50e8;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #e9ebef;
  --sidebar-accent-foreground: #26374d;
  --sidebar-border: rgba(11, 80, 232, 0.1);
  --sidebar-ring: #0b50e8;
}

/* Base Styles */
html {
  font-size: var(--font-size);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  font-size: 1rem;
}

/* Utility Classes */
.min-h-screen { min-height: 100vh; }
.bg-background { background-color: var(--background); }
.overflow-x-hidden { overflow-x: hidden; }
.max-w-\[1280px\] { max-width: 1280px; }
.max-w-\[1200px\] { max-width: 1200px; }
.z-10 { z-index: 10; }
.h-full { height: 100%; }
.flex { display: flex; }
.items-center { align-items: center; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.w-40 { width: 10rem; }
.h-10 { width: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pt-16 { padding-top: 4rem; }
.g-4 { gap: 1rem; }
.g-6 { gap: 1.5rem; }
.g-8 { gap: 2rem; }
.g-12 { gap: 3rem; }

/* Custom Animations */
@keyframes shine {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-15px) translateX(8px); }
  66% { transform: translateY(10px) translateX(-8px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(15px) translateX(-10px); }
  66% { transform: translateY(-15px) translateX(10px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(15px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-shine { animation: shine 1.5s ease-in-out; }
.animate-fade-in { animation: fadeIn 0.6s ease-out 0.1s both; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out 0.2s both; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease-out 0.1s both; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease-out 0.2s both; }

/* Navigation */
.custom-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.custom-nav .nav-link {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.75rem;
}

.custom-nav .nav-link:hover {
  color: var(--primary);
}

.custom-contact-btn {
  background: white;
  border: 2px solid black;
  border-radius: 50px;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.custom-contact-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-contact-btn span {
  padding: 0.5rem 1rem;
  color: black;
}

.contact-icon {
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, var(--background) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-gradient-1 {
  position: absolute;
  top: 25%;
  left: 16.67%;
  width: 192px;
  height: 192px;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.08), rgba(59, 130, 246, 0.08));
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse 2s infinite;
}

.hero-gradient-2 {
  position: absolute;
  bottom: 25%;
  right: 16.67%;
  width: 224px;
  height: 224px;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.08), rgba(236, 72, 153, 0.08));
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse 2s infinite 1s;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 70%, transparent 110%);
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  top: 64px;
  right: 64px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  animation: float 5s infinite ease-in-out;
}

.orb-2 {
  bottom: 128px;
  left: 64px;
  width: 16px;
  height: 16px;
  background: linear-gradient(to right, #8b5cf6, #ec4899);
  animation: float2 6s infinite ease-in-out;
}

.orb-3 {
  top: 50%;
  right: 25%;
  width: 8px;
  height: 8px;
  background: #10b981;
  animation: float3 4s infinite ease-in-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.2), rgba(59, 130, 246, 0.2));
  color: var(--primary);
  border: 1px solid rgba(11, 80, 232, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.popup-form .form-card {
    box-shadow: none;
    border: none;
}

.img-sec {
    display: flex;
    width: 35%;
}

.img-sec img {
    width: 100%;
    max-width: 88%;
}

.popup-form .modal-dialog.modal-lg.modal-dialog-centered {
    width: 100% !important;
    max-width: 1150px;
}

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

.form-model-left {
    text-align: left;
}

.form-model-left h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 30px;
}

.form-model-left .value-point {
    font-size: 16px;
}

.inq-main.d-flex {
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.inq-img {
    width: 100%;
    max-width: 18%;
}

.inq-img img {
  max-width: 100%;
}

.inq-sec h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #26374d;
}

.inq-sec a {
    font-size: 25px;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
    color: #26374d;
}

@media (min-width: 992px) {
  .hero-title { font-size: 4rem; }
}

@media (min-width: 1200px) {
  .hero-title { font-size: 5rem; }
}

.hero-gradient-text {
  background: linear-gradient(to right, var(--primary), var(--chart-2), #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.tech-stack {
  margin-bottom: 2rem;
}

.tech-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .hero-cta { flex-direction: row; }
}

.hero-primary-btn {
  background: linear-gradient(to right, var(--primary), var(--chart-2));
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-primary-btn:hover {
  background: linear-gradient(to right, var(--chart-2), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 80, 232, 0.3);
}

/* Consultation Form */
.consultation-form {
  max-width: 35rem;
  margin: 0 0 0 auto;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(11, 80, 232, 0.2);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

.custom-input, .custom-textarea, .custom-select {
  height: 36px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.custom-textarea {
  height: 64px;
  resize: none;
}

.custom-input:focus, .custom-textarea:focus, .custom-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(11, 80, 232, 0.2);
}

.custom-submit-btn {
  height: 44px;
  background: linear-gradient(to right, var(--primary), var(--chart-2), #1383ef);
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-submit-btn:hover {
  background: linear-gradient(to right, #1383ef, var(--primary), var(--chart-2));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 80, 232, 0.4);
}

.trust-indicators {
  margin-top: 1rem;
}

.trust-text {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.availability {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Hero Stats */
.hero-stats {
  border-top: 1px solid rgba(var(--border), 0.5);
  margin-top: 3rem;
  padding-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.custom-submit-btn:hover{
  color: #fff;
}

@media (min-width: 992px) {
  .stat-number { font-size: 2.25rem; }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Services Section */
.services-section {
  position: relative;
  background: linear-gradient(to bottom, var(--background), rgba(245, 249, 254, 0.2));
  padding: 3rem 0;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.services-gradient-1 {
  position: absolute;
  top: 25%;
  left: -64px;
  width: 256px;
  height: 256px;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.03), rgba(59, 130, 246, 0.03));
  border-radius: 50%;
  filter: blur(80px);
}

.services-gradient-2 {
  position: absolute;
  bottom: 25%;
  right: -64px;
  width: 224px;
  height: 224px;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.03), rgba(236, 72, 153, 0.03));
  border-radius: 50%;
  filter: blur(80px);
}

.services-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 60%, transparent 100%);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.2), rgba(59, 130, 246, 0.2));
  color: #0b50e8;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border-color: color-mix(in oklab, var(--primary) 20%, transparent);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

button.btn.btn-primary.btn-lg, button.btn.btn-outline-primary.btn-lg {
    border-radius: 100px;
}

@media (min-width: 992px) {
  .section-title { font-size: 48.5px; }
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--chart-2), #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .featured-title { font-size: 1.875rem; }
}

.featured-description {
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

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

.featured-service {
  border: 2px solid #0b50e80f;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 237, 0.5));
}

.featured-service:hover {
  border-color: #0b50e80f;
}

.service-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(to right, rgba(11, 80, 232, 0.2), rgba(59, 130, 246, 0.2));
    color: #0b50e8;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}


.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, rgba(11, 80, 232, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b50e8;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.featured-service:hover .service-title {
  color: #0b50e8;
}

.service-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.service-tag {
  background: linear-gradient(to right, rgba(11, 80, 232, 0.2), rgba(59, 130, 246, 0.2));
  color: #0b50e8;
  padding: 0.125rem 0.375rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #0b50e80f;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .section-subtitle { font-size: 1.5rem; }
}

/* Portfolio Section */
.portfolio-section {
  position: relative;
}

.portfolio-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.portfolio-gradient-1 {
  position: absolute;
  top: 64px;
  left: -64px;
  width: 224px;
  height: 224px;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.03), rgba(59, 130, 246, 0.03));
  border-radius: 50%;
  filter: blur(80px);
}

.portfolio-gradient-2 {
  position: absolute;
  bottom: 64px;
  right: -64px;
  width: 256px;
  height: 256px;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.03), rgba(236, 72, 153, 0.03));
  border-radius: 50%;
  filter: blur(80px);
}

.portfolio-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.01) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 60%, transparent 100%);
}

.portfolio-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  height: 100%;
}

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

.portfolio-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f9fafb;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-content {
  padding: 1rem;
}

.portfolio-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-logo {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  flex-shrink: 0;
}

.portfolio-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.portfolio-company {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.portfolio-description {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.portfolio-metric {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.375rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-cta-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Social Proof Section */
.social-proof-section {
  position: relative;
  background: linear-gradient(to bottom, var(--background), rgba(245, 249, 254, 0.2));
  padding: 5rem 0;
}

.social-proof-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.social-proof-gradient-1 {
  position: absolute;
  top: 25%;
  left: -80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 50%;
  filter: blur(60px);
}

.social-proof-gradient-2 {
  position: absolute;
  bottom: 25%;
  right: -80px;
  width: 288px;
  height: 288px;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.05), rgba(236, 72, 153, 0.05));
  border-radius: 50%;
  filter: blur(60px);
}

.social-proof-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 60%, transparent 100%);
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

select.form-select.custom-select.is-valid {
    padding-right: 0 !important;
}

button.btn.btn-primary.btn-lg, button.btn.btn-outline-primary.btn-lg {
    font-size: 14px;
}

.custom-nav img.w-full.h-full.object-contain {
    max-width: 134px;
}

@media (min-width: 992px) {
  .testimonials-title { font-size: 48.5px; }
}

@media (min-width: 1200px) {
  .testimonials-title { font-size: 48.5px; }
}

.testimonials-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonial-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: linear-gradient(to bottom right, rgba(11, 80, 232, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 50%;
  filter: blur(40px);
  opacity: 100;
  transition: opacity 0.5s ease;
}

.testimonial-quote {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, rgba(11, 80, 232, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.testimonial-quote i {
  color: var(--primary);
  font-size: 1.5rem;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.testimonial-rating i {
  color: #fbbf24;
  margin-right: 0.25rem;
}

.rating-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.testimonial-content {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
  position: relative;
  z-index: 10;
}

.testimonial-highlight {
  background: linear-gradient(to right, rgba(11, 80, 232, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.highlight-label {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.highlight-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.author-verified {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.author-name {
  font-weight: 600;
  color: #111827;
}

.author-position {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.author-company {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

/* Why Choose Us Section */
.why-choose-section {
  position: relative;
  background: linear-gradient(to bottom right, var(--background), rgba(245, 249, 254, 0.05), var(--background));
}

.why-choose-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.why-choose-gradient-1 {
  position: absolute;
  top: 25%;
  left: -80px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(11, 80, 232, 0.1) 0%, rgba(11, 80, 232, 0.05) 50%, transparent 100%);
  animation: pulse 4s infinite;
}

.why-choose-gradient-2 {
  position: absolute;
  bottom: 25%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.05) 50%, transparent 100%);
  animation: pulse 4s infinite 2s;
}

.why-choose-gradient-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 256px;
  height: 256px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, rgba(147, 51, 234, 0.04) 50%, transparent 100%);
  animation: pulse 6s infinite 4s;
}

.why-choose-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 60%, transparent 100%);
}

.value-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 254, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(11, 80, 232, 0.3);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.value-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.ai-icon {
  background: linear-gradient(to bottom right, #9333ea, #3b82f6, #06b6d4);
}

.speed-icon {
  background: linear-gradient(to bottom right, #f97316, #dc2626, #ec4899);
}

.security-icon {
  background: linear-gradient(to bottom right, #16a34a, #059669, #0d9488);
}

.team-icon {
  background: linear-gradient(to bottom right, #6366f1, #8b5cf6, #3b82f6);
}

.value-info {
  flex: 1;
  margin-left: 1rem;
}

.value-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6366f1;
  margin-bottom: 0.25rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.value-card:hover .value-title {
  color: var(--primary);
}

.value-stat {
  text-align: center;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, #9333ea, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.value-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

.value-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.value-point {
  display: flex;
  align-items: center;
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.875rem;
}

.value-point i {
  color: #16a34a;
  margin-right: 0.75rem;
}

/* Lead Form Section */
.lead-form-section {
  position: relative;
  background: linear-gradient(to bottom, var(--background), rgba(245, 249, 254, 0.3));
  padding: 4rem 0;
}

.lead-form-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.lead-form-gradient-1 {
  position: absolute;
  top: 25%;
  left: -80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 50%;
  filter: blur(60px);
}

.lead-form-gradient-2 {
  position: absolute;
  bottom: 25%;
  right: -80px;
  width: 288px;
  height: 288px;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.05), rgba(236, 72, 153, 0.05));
  border-radius: 50%;
  filter: blur(60px);
}

.lead-form-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 60%, transparent 100%);
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.5);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(11, 80, 232, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  color: var(--primary);
  font-size: 1.25rem;
}

.benefit-title {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(11, 80, 232, 0.1);
}

.trust-rating {
  text-align: center;
  margin-bottom: 1rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.rating-stars i {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-value {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.rating-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-stats {
  text-align: center;
}

.trust-stat {
  padding: 0.5rem;
}

.trust-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.trust-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.lead-form-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(11, 80, 232, 0.1);
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--muted-foreground);
}

.privacy-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  margin-bottom: 0;
}

.privacy-link {
  color: var(--primary);
  text-decoration: none;
}

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

.additional-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-item i {
  font-size: 1rem;
}

/* AI Focus Section */
.ai-focus-section {
  position: relative;
}

.ai-focus-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.ai-focus-gradient-1 {
  position: absolute;
  top: 25%;
  left: -128px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 80, 232, 0.08) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 100%);
  animation: pulse 6s infinite;
}

.ai-focus-gradient-2 {
  position: absolute;
  bottom: 25%;
  right: -128px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, rgba(16, 185, 129, 0.04) 50%, transparent 100%);
  animation: pulse 6s infinite 3s;
}

.ai-focus-gradient-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 256px;
  height: 256px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 50%, transparent 100%);
  animation: pulse 8s infinite 5s;
}

.ai-focus-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 60%, transparent 100%);
}

.ai-tech-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(11, 80, 232, 0.1);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.tech-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.text-orange-500 { color: #f97316; }
.text-red-500 { color: #ef4444; }
.text-green-500 { color: #22c55e; }
.text-blue-500 { color: #3b82f6; }
.text-yellow-500 { color: #eab308; }
.text-purple-500 { color: #a855f7; }

.ai-stat-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.ai-stat-card:hover {
  transform: translateY(-5px) scale(1.05);
}

.ai-stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom right, var(--primary), #8b5cf6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ai-stat-card:hover .ai-stat-icon {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ai-stat-icon i {
  color: white;
  font-size: 2rem;
}

.ai-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.ai-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.ai-stat-card:hover .ai-stat-label {
  color: var(--foreground);
}

.ai-services-title {
  font-size: 52.5px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ai-services-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.ai-service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 254, 0.5));
  border: 1px solid rgba(11, 80, 232, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.ai-service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ai-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ai-service-card:hover .ai-service-icon {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.ml-icon {
  background: linear-gradient(to bottom right, #9333ea, #ec4899);
}

.nlp-icon {
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.cv-icon {
  background: linear-gradient(to bottom right, #10b981, #14b8a6);
}

.ai-service-icon i {
  font-size: 1.75rem;
}

.ai-service-stat {
  text-align: right;
}

.ai-service-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #9333ea, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-service-metric {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.ai-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.ai-service-card:hover .ai-service-title {
  color: var(--primary);
}

.ai-service-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ai-service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ai-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-feature-item i {
  color: #10b981;
  flex-shrink: 0;
}

.ai-feature-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.ai-service-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.ai-service-card:hover .ai-service-btn {
  background: rgba(11, 80, 232, 0.05);
  border-color: rgba(11, 80, 232, 0.3);
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  background: linear-gradient(to bottom, #f8fafc, white, #f8fafc);
  padding: 4rem 0;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.final-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .final-cta-title { font-size: 4rem; }
}

@media (min-width: 1200px) {
  .final-cta-title { font-size: 48.5px; }
}

.final-cta-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.final-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.free-icon {
  background: linear-gradient(to bottom right, #16a34a, #059669);
  color: white;
}

.fast-icon {
  background: linear-gradient(to bottom right, #3b82f6, #8b5cf6);
  color: white;
}

.results-icon {
  background: linear-gradient(to bottom right, #f97316, #dc2626);
  color: white;
}

.final-value-icon i {
  font-size: 2rem;
}

.final-value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.final-value-description {
  color: var(--muted-foreground);
}

.final-cta-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(11, 80, 232, 0.1);
}

.final-contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.final-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.final-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, rgba(11, 80, 232, 0.05), rgba(59, 130, 246, 0.05));
  transition: all 0.3s ease;
  cursor: pointer;
}

.final-contact-item:hover {
  background: linear-gradient(to right, rgba(11, 80, 232, 0.1), rgba(59, 130, 246, 0.1));
  transform: scale(1.02);
}

.final-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.final-contact-item:hover .final-contact-icon {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.phone-icon {
  background: linear-gradient(to bottom right, var(--primary), #3b82f6);
}

.email-icon {
  background: linear-gradient(to bottom right, #10b981, #14b8a6);
}

.chat-icon {
  background: linear-gradient(to bottom right, #8b5cf6, #ec4899);
}

.final-contact-icon i {
  font-size: 1.5rem;
}

.final-contact-method {
  font-weight: 700;
  color: var(--foreground);
  font-size: 16px;
}

.final-contact-detail {
  color: var(--muted-foreground);
  margin: 0;
}

.final-offer-badge {
  background: linear-gradient(to right, #16a34a, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
}

.final-offer-title {
  font-size: 26.5px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.final-offer-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.final-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.final-benefit-item i {
  color: #16a34a;
  flex-shrink: 0;
}

.final-benefit-item span {
  color: var(--muted-foreground);
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.final-primary-btn {
  background: linear-gradient(to right, var(--primary), #3b82f6, #8b5cf6);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: max-content;
  border-radius: 100px;
}

.final-primary-btn:hover {
  background: linear-gradient(to right, #8b5cf6, #3b82f6, var(--primary));
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(11, 80, 232, 0.3);
  color: #fff;
}

.final-secondary-btn {
  background: transparent;
  border: 2px solid rgba(11, 80, 232, 0.3);
  color: var(--foreground);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  width: max-content;
  border-radius: 100px;
}

.final-secondary-btn:hover {
  background: rgba(11, 80, 232, 0.05);
}

.final-trust {
  max-width: 32rem;
  margin: 0 auto;
}

.final-trust-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Footer Section */
.footer-section {
  position: relative;
  background: linear-gradient(to bottom, #f8fafc, white, #f8fafc);
  padding: 2rem 0;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(11, 80, 232, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 80, 232, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer-gradient-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 256px;
  height: 256px;
  background: rgba(11, 80, 232, 0.03);
  border-radius: 50%;
  filter: blur(80px);
}

.footer-gradient-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 224px;
  height: 224px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 50%;
  filter: blur(80px);
}

.footer-stat {
  text-align: center;
  transition: transform 0.3s ease;
}

.footer-stat:hover {
  transform: scale(1.05);
}

.footer-stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 0.5rem;
  transition: transform 0.3s ease;
}

.footer-stat:hover .footer-stat-icon {
  transform: scale(1.1);
}

.footer-stat-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.footer-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand-name {
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--chart-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.footer-brand-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.footer-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  max-width: 28rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 992px) {
  .footer-contact {
    justify-content: flex-end;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover {
  transform: scale(1.05);
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  transform: scale(1.1);
}

.footer-contact-icon i {
  font-size: 0.875rem;
}

.footer-contact-icon .fa-envelope { color: var(--primary); }
.footer-contact-icon .fa-phone { color: #10b981; }
.footer-contact-icon .fa-map-marker-alt { color: #8b5cf6; }

.footer-contact-item a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.footer-brand-highlight {
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--chart-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.hero-section-sec {
    width: 100%;
    padding: 4em 0em;
}

.value-card i.fas.fa-brain, .value-card i.fas.fa-bolt, .value-card i.fas.fa-shield-alt, .value-card i.fas.fa-users {
    font-size: 25px;
}

.value-points i {
    font-size: 16px;
}

.service-card-1 .service-badge, .service-icon.ser-icon1, .service-card-1 .service-tag {
    background: linear-gradient(to bottom right, #f97316, #dc2626, #ec4899);
    color: #fff;
}

.service-card-1:hover h4 {
    color: #dc2626 !important;
} 

.service-card-2 .service-badge, .service-card-2 .service-icon, .service-card-2 .service-tag  {
    background: linear-gradient(to bottom right, #6366f1, #8b5cf6, #3b82f6);
    color: #fff;
}

.service-card-2:hover h4 {
    color: #6366f1 !important;
}

.service-card-3 .service-badge, .service-card-3 .service-icon, .service-card-3 .service-tag  {
    background: linear-gradient(to bottom right, #16a34a, #059669, #0d9488);
    color: #fff;
}

.service-card-3:hover h4 {
    color: #16a34a !important;
}

.service-card-4 .service-badge, .service-card-4 .service-icon, .service-card-4 .service-tag  {
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
    color: #fff;
}

.service-card-4:hover h4 {
    color: #9333ea !important;
}

.service-card-5 .service-badge, .service-card-5 .service-icon, .service-card-5 .service-tag  {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
    color: #fff;
}

.service-card-5:hover h4 {
    color: #3b82f6 !important;
}

.service-card-6 .service-badge, .service-card-6 .service-icon, .service-card-6 .service-tag  {
    background: linear-gradient(to bottom right, #9333ea, #3b82f6, #06b6d4);
    color: #fff;
}

.service-card-5:hover h4 {
    color: #9333ea !important;
}

.message-box {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}
.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

#consultationForm .form-label {
    display: block;
    text-align: left;
}
@media (min-width: 992px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px) scale(1.1);
  color: white;
}

.footer-social-link.facebook { background: #1383ef; }
.footer-social-link.linkedin { background: #0077b5; }
.footer-social-link.twitter { background: #1da1f2; }
.footer-social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .consultation-form {
    margin-top: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .final-cta-title {
    font-size: 2rem;
  }
  
  .ai-services-title {
    font-size: 2rem;
  }
  
  .footer-contact {
    flex-direction: column;
    align-items: center;
  }
  
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .ai-tech-stack {
    gap: 1rem;
  }
  
  .final-contact-methods {
    gap: 1rem;
  }
}