/* 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;
}

/* 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: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 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(135deg, rgba(249, 115, 22, 0.1), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ea580c;
  backdrop-filter: blur(10px);
}

.service-card {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  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%);
}

.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: var(--primary-color);
  backdrop-filter: blur(10px);
}

.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;
}
}

.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-bottom: 80px;
}

.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);
}

