:root {
  --primary: #2563eb;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #9caabe;
  --border: rgba(59, 130, 246, 0.2);
  --card: #ffffff;
  --card-foreground: #0f172a;
  --radius: 0.625rem;
  --font-size: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.text-primary {
  color: var(--primary);
}
.logo img {
  width: 90px;
  margin-top: 10px;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
  font-size: 30px;
  font-weight: 500;
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.logo h1 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.cta-desktop {
  display: none;
}

.mobile-menu-btn {
  display: block;
}

.nav-mobile {
  display: none;
}

.nav-desktop.active {
  display: block;
}

.nav-mobile-content {
  padding: 0.5rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.nav-mobile-content a {
  display: block;
  padding: 0.75rem;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-mobile-content a:hover {
  color: var(--primary);
}

.mobile-cta {
  padding: 0.75rem;
}

/* Hero Section */
.hero {
  padding: 10rem 0 3rem;
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.5rem;
  /* margin-bottom: 2rem; */
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  z-index: 10;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-decoration {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 99, 235, 0.2);
  border-radius: 1rem;
  z-index: -1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
  font-size: 1.1rem;
}
.contact-form {
  text-align: end;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.3rem;
  max-width: 48rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.service-card p {
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

.service-features li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--background);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image {
  position: relative;
  top: 20px;
}
.max-width-100 {
  max-width: 100% !important;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); */
}
.w-90 {
  width: 90%;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.badge-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.badge-text {
  font-size: 0.95rem;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.tech-stack {
  margin-top: 2rem;
}

.tech-stack h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  background-color: var(--muted);
  color: var(--muted-foreground);
  padding: 0.5rem 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
}

.values {
  text-align: center;
}

.values h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  color: var(--primary);
}

.value-card h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  margin: 0;
}
.values-grid-abt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.value-card-abt {
  width: 50%;
  padding: 14px 0;
  flex-basis: calc(50% - 0px);
  /* display: flex; */
  /* flex-direction: column; */
}
.abt-head-wrapper {
  text-align: left;
}
.abt-head-wrapper p {
  margin: 0;
}
.abt-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.abt-content-left {
  width: 60%;
  padding: 10px;
}
.abt-image-right {
  width: 40%;
  padding-left: 10px;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: rgba(241, 245, 249, 0.5);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  color: var(--primary);
}

.contact-label {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--muted-foreground);
  margin: 0;
}

.form-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: calc(var(--radius) - 2px);
  background-color: #f8fafc;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
}

.footer-main {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-company {
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-address {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-address p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--background);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-separator {
  height: 1px;
  background-color: rgba(37, 99, 235, 0.2);
  margin: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.975rem;
  color: var(--muted-foreground);
  margin: 0;
  font-weight: 500 !important;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.contact-value {
  font-size: 1.1rem !important;
}
.value-card-abt p {
  line-height: unset;
}
.contact-value a{
  color: var(--muted-foreground);
  text-decoration: none;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .cta-desktop {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 11rem 0 5rem;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 3.75rem;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-header h2 {
    font-size: 3.125rem;
  }
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 2fr;
  }
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(3, 200px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .abt-section-wrapper {
    display: block;
  }
  .abt-content-left,
  .abt-image-right {
    width: 100%;
    text-align: center;
  }
  .about-image img,
  .image-container img {
    width: 90%;
  }
  .contact-form,
  .about-image,
  .hero-image {
    text-align: center;
  }
}
@media (max-width: 992px) {
}
@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }

  .hero {
    padding: 10rem 0 2rem;
  }

  .services,
  .about,
  .contact {
    padding: 3rem 0;
  }
  .nav-desktop {
    display: none;
  }
  .nav-desktop {
    display: none;
    gap: 2rem;
    /* display: block; */
    position: absolute;
    top: 100%;
    /* display: flex; */
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    left: 0;
    /* padding: 30px 0; */
  }
  .nav-desktop a {
    display: block;
    margin: 20px 0;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-bottom {
  justify-content: center;
}
@media (max-width: 556px) {
  .value-card-abt {
    width: 100%;
    flex-basis: unset;
  }
  .hero-content {
    overflow: hidden;
  }
  .w-90,
  .about-image img,
  .image-container img {
    width: 100%;
  }
}
