/* Custom CSS Variables */
:root {
  --primary-color: #0b50e8;
  --primary-dark: #094bcf;
  --secondary-color: #1383ef;
  --background-color: #ffffff;
  --text-color: #26374d;
  --text-muted: #6c757d;
  --border-color: rgba(11, 80, 232, 0.1);
  --gradient-orange: linear-gradient(135deg, #f97316, #dc2626, #9333ea);
  --gradient-primary: linear-gradient(135deg, #0b50e8, #1383ef, #9333ea);
  --font-family: 'Inter', sans-serif;
  --muted-foreground: #253a52;
  --foreground: #26374d;
  --chart-2: #1383ef;
  --primary: #0b50e8;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Custom Text Gradients */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Custom Button Gradients */
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #9333ea, #1383ef, #0b50e8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 80, 232, 0.3);
  color: white;
}

.btn-gradient-orange {
  background: var(--gradient-orange);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-gradient-orange:hover {
  background: linear-gradient(135deg, #9333ea, #dc2626, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  color: white;
}

/* Letter Spacing Utility */
.letter-spacing {
  letter-spacing: 0.1em;
}

a.sr-only.sr-only-focusable.position-absolute {
    display: none;
}

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

/* Navigation Styles */
.navbar {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-btn {
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 80, 232, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.1), rgba(19, 131, 239, 0.1));
  border: 1px solid rgba(11, 80, 232, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  backdrop-filter: blur(10px);
}

.tech-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 2px;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button {
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 80, 232, 0.3);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    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);
}

.submit-btn {
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 80, 232, 0.3);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 255, 0.3) 100%);
}

.services-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, var(--primary), var(--chart-2), #1383ef);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.service-card {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 237, 0.5));
  backdrop-filter: blur(10px);
}

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

.ai-service-card {
  border-color: rgba(249, 115, 22, 0.2) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.ai-service-card:hover {
  border-color: rgba(249, 115, 22, 0.4) !important;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.ai-icon {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.bot-icon {
  background: linear-gradient(135deg, #9333ea, #3b82f6);
}

.analytics-icon {
  background: linear-gradient(135deg, #10b981, #0d9488);
}

.web-icon {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.mobile-icon {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.cloud-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

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

.ai-badge {
  background: var(--gradient-orange) !important;
  border: none !important;
}

.tech-badge-ai {
  background-color: rgba(249, 115, 22, 0.1) !important;
  color: #ea580c !important;
  border: 1px solid rgba(249, 115, 22, 0.2) !important;
}

.tech-badge-primary {
  background-color: rgba(11, 80, 232, 0.1) !important;
  color: var(--primary-color) !important;
  border: 1px solid rgba(11, 80, 232, 0.2) !important;
}

.ai-cta-button {
  transition: all 0.3s ease;
}

.ai-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* Portfolio Section */
.portfolio-section {
  padding: 0px 0px 0px 0px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 250, 255, 0.1) 100%);
  margin-top: 3em;
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.1), rgba(147, 51, 234, 0.1));
  border: 1px solid rgba(11, 80, 232, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, var(--primary), var(--chart-2), #1383ef);
}

.portfolio-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.portfolio-image img {
  transition: transform 0.3s ease;
}

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

.portfolio-logo {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.portfolio-tags .badge {
  font-size: 0.75rem;
  font-weight: 500;
}

.tag-ai {
  background-color: rgba(11, 80, 232, 0.1) !important;
  color: var(--primary-color) !important;
}

.tag-location {
  background-color: rgba(107, 114, 128, 0.1) !important;
  color: #6b7280 !important;
}

.tag-industry {
  background-color: rgba(107, 114, 128, 0.1) !important;
  color: #6b7280 !important;
}

.portfolio-cta-button {
  transition: all 0.3s ease;
}

.portfolio-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 80, 232, 0.3);
}

/* Social Proof Section */
.social-proof-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 255, 0.3) 100%);
}





.social-proof-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.1), rgba(147, 51, 234, 0.1));
  border: 1px solid rgba(11, 80, 232, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  backdrop-filter: blur(10px);
}

.stat-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.testimonial-card {
  border: 1px solid rgba(226, 232, 240, 0.5);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(11, 80, 232, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.1), rgba(19, 131, 239, 0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.testimonial-highlight {
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.05), rgba(19, 131, 239, 0.05));
  border-radius: 8px;
  padding: 12px;
}

.testimonial-avatar {
  position: relative;
}

.testimonial-avatar img {
  width: 48px;
  height: 48px;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-verified {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Footer Section */
.footer-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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-orb-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(11, 80, 232, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.footer-gradient-orb-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(19, 131, 239, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.contact-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(11, 80, 232, 0.1), rgba(19, 131, 239, 0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.facebook {
  background: linear-gradient(135deg, #1383ef, #0b50e8);
}

.linkedin {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.instagram {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

/* Responsive Design */


/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 80, 232, 0.25);
  border-color: var(--primary-color);
}

/* Loading State */
.btn.loading {
  position: relative;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .social-links {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .container {
    max-width: none !important;
  }
}


button.btn.btn-primary.btn-lg.rounded-pill.px-5.py-3 {
    background: linear-gradient(135deg, #0b50e8, #1383ef, #9333ea);
}

.mt-6 {
  margin-top: 50px;
}

form#contactForm label {
  display: block;
  text-align: left;
}

form#contactForm input {
    height: 36px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

textarea#project {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    height: 64px;
    resize: none;
}

form#contactForm select {
    background-color: #f9fafb !important;
}

.hero-heading h1 {
    font-size: 52.5px;
}

.services-section h2, .portfolio-section h2, .social-proof-section h2 {
    font-size: 31.5px;
}

.digital-dev-main h3, .featured-ai-main h3 {
    font-size: 26px;
}

.digital-dev-main p.text-muted, .featured-ai-main p.text-muted, p.lead.text-muted.mx-auto.fade-in-up {
  font-size: 14px;
}

.ai-service-card i.fas.fa-brain {
    color: #fff;
}

.hero-heading p {
    font-size: 15.75px;
}

p.small.text-muted.text-uppercase.fw-semibold.mb-3.letter-spacing {
    font-size: 10.5px;
} 

span.tech-badge {
    font-size: 12.5px;
}

button.btn  {
    font-size: 15.75px;
}

h5.card-title, p.card-text {
    font-size: 14px;
}

.h5.fw-bold.text-dark {
    font-size: 17.5px;
}

button.btn.btn-primary.rounded-pill.px-4.contact-btn {
    background: linear-gradient(135deg, #0b50e8, #1383ef, #9333ea);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

@media screen and (max-width: 767px) {
.hero-heading h1 {
    font-size: 38.5px;
  }
.social-links {
    justify-content: center;
  }
.hero-section {
    padding: 120px 0 0px 0px;
  }
.services-section, .social-proof-section {
    padding: 58px 0;
  }
section.ai-focus-section .row.mt-5.container.mx-auto {
    gap: 20px;
    padding: 0;
    margin-top: 21px !important;
}
section.ai-focus-section .col-md-6.col-lg-4 {
    padding: 0;
}
.schedule-console-btn {
  display: block;
  margin-top: 20px;
}
.featured-sec-mob .row {
    gap: 20px !important;
}
.goal-img img, .design-process img {
  width: 100%;
}
section.single-ai-hero {
    padding-top: 8em !important;
}
section.single-ai-hero h1, .single-Project-des h2, .goal-sec h2 {
    font-size: 30px !important;
    margin-bottom: 10px !important;
}
section.single-ai-hero p, .design-process p {
    font-size: 14px !important;
}
.sold-hero-icon-main h6 {
    font-size: 20.25px !important; 
}
section.single-Project-des p {
    font-size: 14px !important;
    max-width: 100% !important;
}
.dot-sec li, .goal-sec p, .goal-sec li, .form-model-left .value-point {
    font-size: 14px !important;
}
.tool-main h4 {
    font-size: 22px !important;
}
.tool-con h5 {
    font-size: 15px !important;
}
section.single-Project-des li, .contect-sec p {
    font-size: 15px !important;
}
.single-Project-des {
    padding: 4em 0em 0em 0em !important;
}
.process-con h3 {
    font-size: 24px !important;
}
.left-img {
    text-align: center !important;
}
.sd-sec {
    padding: 0em 0em 4em 0em !important;
}
.sd-sec h2, .contect-sec h2 {
    font-size: 30px !important;
    line-height: 40px;
}
.contect-sec p {
    margin-top: 1em;
    margin-bottom: 1em;
}
.form-model-left h2 {
    font-size: 24px !important;
    line-height: 34px;
    margin-bottom: 10px;
}
.num-sec:nth-child(1) {
    margin-top: 2em;
}
.num-sec {
    margin-bottom: 2em;
}
.schedule-console-btn {
    display: flex;
    text-align: center;
    margin: 10px auto 0px auto;
}
.model-form-left-sec {
  display: none;
}
div#carouselExampleControls {
    padding: 60px 16px !important;
}
.schedule-console-btn {
    font-size: 16px !important;
    max-width: 95% !important;
    align-items: center !important;
    justify-content: center !important;
}
.modal-content {
  margin: 0px 10px;
}
.form-model-left {
    display: none;
}
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-services-description {
    font-size: 14px;
    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-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.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 {
    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-stat {
    text-align: right;
}

.ai-service-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #9333ea, #3b82f6);
    -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: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.ai-service-description {
    font-size: 14px;
    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);
}

section.ai-focus-section {
  padding: 80px 0px;
}

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

.ai-service-card:hover .ai-service-icon {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.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-content {
    padding: 1rem;
}
.portfolio-header {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.portfolio-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.portfolio-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.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;
}
a, a:hover {
    text-decoration: none !important;
}
.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-company {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}
.portfolio-metric {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}
.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;
}
.featured-service {
    border: 2px solid #0b50e80f;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 237, 0.5));
}
.service-card {
    border-radius: 1rem;
    padding: 1rem;
    position: relative;
    height: 100%;
}
.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 .service-badge, .service-icon.ser-icon1, .service-card-1 .service-tag {
    background: linear-gradient(to bottom right, #f97316, #dc2626, #ec4899);
    color: #fff;
}
.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}
.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-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.service-tag {
    padding: 0.125rem 0.375rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #0b50e80f;
}
.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-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-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-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-6 .service-badge, .service-card-6 .service-icon, .service-card-6 .service-tag {
    background: linear-gradient(to bottom right, #9333ea, #3b82f6, #06b6d4);
    color: #fff;
}
div#carouselExampleControls {
    padding: 60px 0px;
    background: linear-gradient(to right, var(--primary), #3b82f6, #8b5cf6);
}
.carousel-control-prev {
    left: 15%;
    display: none;
}
.carousel-control-next {
    right: 15%;
    display: none;
}
div#carouselExampleControls p.text-muted {
    color: #fff !important;
    font-size: 18px;
}
.carousel-item {
  text-align: center;
}
div#carouselExampleControls {
    padding: 60px 0px;
    background: linear-gradient(to right, var(--primary), #3b82f6, #8b5cf6);
}
.carousel-control-next-icon i, .carousel-control-prev-icon i {
  font-size: 30px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    background-image: unset !important;
}
div#carouselExampleControls .row.d-flex.justify-content-center {
    color: #fff !important;
}
div#carouselExampleControls p.text-muted {
    color: #fff !important;
        font-size: 18px;
}
.mt-6 {
  margin-top: 5em;
}
.carousel-control-next {
    right: 34%;
}
.carousel-control-prev {
    left: 1%;
}
.schedule-console-btn {
    background: #ffffff;
    border: none;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 100px;
}
.client-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.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;
    border-radius: 100px;
    font-size: 14px;
}

section.single-ai-hero {
    background-image: url(./assets/sold-bg-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

section.single-ai-hero h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 54px;
    color: #0067A2;
}

section.single-ai-hero p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
}

.single-ai-hero-img img {
    width: 100%;
}

.sold-hero-icon-main {
    display: flex;
    gap: 15px;
}
.sold-hero-icon-main h6 {
    font-family: "Poppins";
    font-weight: 500;
    font-style: Medium;
    font-size: 24.25px;
    color: #005AA3;
}
.sold-hero-icon-main p {
    font-family: "Poppins";
    font-weight: 300;
    font-style: Light;
    font-size: 21px;
    color: #3A3A3A;
}
.right-img-sec img {
    width: 100%;
    max-width: 90%;
}
.single-Project-des {
    background-image: url(./assets/Project-overview.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 4em 0em 4em 0em;
}
.tool-main-sec {
    display: flex;
    gap: 15px;
}
.tool-con-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.tool-main h4 {
    margin-top: 5px;
    margin-bottom: 15px;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 30px;
    color: #0067A2;
}
.tool-con h5 {
    font-family: "Poppins";
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    color: #3A3A3A;
}
.single-Project-des h2, .goal-sec h2 {
  font-family: "Poppins";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 50px;
  color: #0067A2;
  margin-bottom: 25px;
}
section.single-ai-hero .hero-content p {
  margin: 18px auto;
}
section.single-Project-des p {
    font-weight: 300;
    font-size: 18px;
    font-family: 'Poppins';
    max-width: 90%;
    color: #3A3A3A;
}
section.single-Project-des li {
    font-size: 18px;
    color: #3A3A3A;
    font-family: "Poppins";
    font-weight: 300;
}
.dot-sec li {
  font-size: 16px !important;
}
section.single-Project-des li bold {
  font-weight: 600;
}
.tool-con-inner img {
    width: 30px;
}
.dot-sec {
  margin-bottom: 20px;
}
.dot-sec h6 {
    font-family: "Poppins";
    font-weight: 700;
    font-size: 21px;
}
.dot-sec li {
    font-family: Poppins;
    font-weight: 300;
    font-size: 18px;
}
.right-img-sec {
    text-align: center;
}
.tool-con li {
    font-family: Poppins;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 10px;
}
.tool-con li bold {
    font-weight: 700;
}
.goal-sec {
    background-image: url(./assets/goal-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 4em 0em 0em 0em;
}
.goal-sec p, .goal-sec li {
    font-family: "Poppins";
    font-weight: 300;
    font-style: Light;
    font-size: 18px;

}
.goal-img {
    text-align: center;
}
.dev-process {
  background: #0067A2;
  padding: 3em 0em;
}
.process-con {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.process-con h3 {
  font-family: "Poppins";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 45px;
  color: #fff;
  margin-bottom: 0px;
}
.design-process {
  background-image: url(./assets/dp-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 4em 0em 4em 0em;
}
.design-process p {
    font-family: "Poppins";
    font-weight: 300;
    font-size: 18px;
}
.sd-sec {
  background-image: url(./assets/SD-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 4em 0em 4em 0em;
}
.sd-sec h2 {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 45px;
    text-align: center;
    margin-bottom: 1em;
}

.sd-sec p {
  font-family: "Poppins";
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  margin-top: 30px;
}
.kar-sec p {
  margin-top: 10px;
}
.kar-sec h5 {
  color: #0067A2;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
}
.num-sec {
    text-align: center;
    margin-bottom: 4em;
    height: 40%;
}
.left-img img {
  max-width: 70%;
}
.contect-sec {
  background-image: url(./assets/con-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 4em 0em 4em 0em;
}
.contect-sec h2 {
  font-family: "Poppins";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 54px;
  color: #fff;
}
.contect-sec p {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-top: 2em;
    margin-bottom: 2em;
}
.btn-sin-btm {
    background: #fff;
    display: block;
    width: fit-content;
    padding-left: 25px;
    padding-right: 3px;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    color: #010101;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 18px !important;
    border: 2px solid #010101;
    border-radius: 100px;
}
.btn-sin-btm:focus {
    outline: none !important;
    background: #fff !important;
    color: #010101 !important;
    border-color: #010101 !important;
    box-shadow: none !important;
}
.btn-sin-btm:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #010101;
}
.btn-sin-btm img {
    padding-left: 6px;
}
p.color-p {
    color: #0067A2;
}
.right-img-ui img {
    width: 100%;
}
section.single-ai-hero.unext-hero {
    padding: 4em 0em;
}

.section-badge.section-badge-fir.mb-4 {
    background: linear-gradient(to right, var(--primary), var(--chart-2), #1383ef);
    color: #fff;
    font-size: 14px;
}

.btn-sin-btm {
  border: 2px solid #0b50e8;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  overflow: visible;
  position: relative;
}

.btn-sin-btm::before,
.btn-sin-btm::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #0b50e8;
  border-radius: inherit;
  animation: pulseOut 2s ease-out infinite;
  opacity: 0;
}

.btn-sin-btm::after {
  animation-delay: 1s;
}

@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.schedule-console-btn {
    background: #ffffff;
    border: none;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: fit-content;
    border-radius: 100px;
    display: flex;
    align-items: center;
}
.schedule-console-btn:hover {
  color: #000;
}

.client-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.popup-form .modal-dialog.modal-lg.modal-dialog-centered {
    width: 100% !important;
    max-width: 1150px;
    margin: auto;
}
.form-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 0.25rem !important;
}
.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;
}
.form-model-left h2 {
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 40px;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #26374D !important;
}
.value-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
}
.form-model-left .value-point {
    font-size: 16px;
}
.value-point {
    display: flex;
    align-items: center;
    color: var(--muted-foreground);
}
.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;
    color: #26374d;
}
.img-sec {
    display: flex;
    width: 35%;
}
#consultationForm .form-label {
    display: block;
    text-align: left;
}
.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;
}
.img-sec img {
    width: 100%;
    max-width: 88%;
}
.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);
}
.thankyou-box {
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      max-width: 500px;
      width: 100%;
    }
    .thankyou-box i {
      font-size: 60px;
      color: #28a745;
      margin-bottom: 20px;
    }
    .thankyou-box h1 {
      font-size: 28px;
      margin-bottom: 15px;
      font-weight: 600;
    }
    .thankyou-box p {
      color: #555;
      margin-bottom: 25px;
    }
    .thankyou-box a {
      text-decoration: none;
    }
    .con-hight {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 70vh;
    }
    .go-home-btn {
      border-radius: 100px;
      padding: 10px 20px;
    }