@charset "UTF-8";
.contact {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f3f4f6 0%, #ffffff 100%);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
.contact__info {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.08);
}
.contact__info h3 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.contact__method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.05);
  transition: background 0.3s ease;
}
.contact__method:hover {
  background: rgba(37, 99, 235, 0.1);
}
.contact__method-icon {
  width: 50px;
  height: 50px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact__method-text h4 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 0.25rem;
  margin-left: 0.5rem;
}
.contact__method-text a, .contact__method-text p {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact__method-text a:hover {
  color: #2563eb;
}
.contact__form {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.08);
}
.contact__form h3 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.contact__form-group {
  margin-bottom: 1.5rem;
}
.contact__form-group label {
  display: block;
  font-family: "Manrope", sans-serif;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact__form-group input, .contact__form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(107, 114, 128, 0.3);
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  transition: border 0.3s ease;
}
.contact__form-group input:focus, .contact__form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}
.contact__form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact__form-submit {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact__form-submit:hover {
  background: #1d4ed8;
}
.contact__success {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0 6px 6px 0;
}
.contact__success p {
  color: #10b981;
  font-family: "Manrope", sans-serif;
}
.contact__error {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0 6px 6px 0;
}
.contact__error p {
  color: #ef4444;
  font-family: "Manrope", sans-serif;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  transform: translateY(-2px);
}

.contact-method-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.contact-method-link:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}

.response-time {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  font-family: "Inter", sans-serif;
  box-shadow: 0 2px 4px rgba(17, 24, 39, 0.05);
}
.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.3rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo-image {
  max-width: 180px;
  margin-top: 0.4rem;
}
@media (max-width: 768px) {
  .header .logo-image {
    max-width: 130px;
  }
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  border: none;
  background: none;
  cursor: pointer;
}
.header .mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #111827;
  display: block;
  transition: 0.3s ease;
}
.header .mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.header .mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  .header .mobile-menu-toggle {
    display: flex;
  }
}
.header .main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header .main-nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #1f2937;
  font-size: 1rem;
}
.header .main-nav ul li a:hover {
  color: #2563eb;
}
.header .main-nav ul li a.active {
  color: #2563eb;
  font-weight: bold;
  position: relative;
}
@media (max-width: 768px) {
  .header .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }
  .header .main-nav ul {
    flex-direction: column !important;
    gap: 1rem;
    padding: 1rem;
    align-items: flex-start;
    text-align: center;
  }
  .header .main-nav ul li {
    text-align: center;
    width: 100%;
  }
  .header .main-nav.open {
    max-height: 100vh;
    height: 100vh;
  }
}

.hero {
  text-align: center;
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, white 100%), repeating-linear-gradient(45deg, rgba(37, 99, 235, 0.04) 0px, rgba(37, 99, 235, 0.03) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(-45deg, rgba(37, 99, 235, 0.015) 0px, rgba(37, 99, 235, 0.015) 1px, transparent 1px, transparent 12px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  /* New left circle */
  content: "";
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero h1 span {
  color: #2563eb;
  position: relative;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(37, 99, 235, 0.2);
  z-index: -1;
}
.hero .subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgb(49.3837209302, 65.3139534884, 87.6162790698);
}
@media (max-width: 768px) {
  .hero .subtitle {
    line-height: 1.4;
  }
}
.hero .cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
}
.hero .btn-primary {
  background: #2563eb;
  color: white;
  border: 2px solid #2563eb;
}
.hero .btn-primary:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}
.hero .btn-secondary {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.hero .btn-secondary:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
}

.pain-points {
  padding: 4rem 0;
  background: linear-gradient(to bottom, rgba(243, 244, 246, 0.5) 0%, white 100%);
  position: relative;
}
.pain-points::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 41, 55, 0.1), transparent);
}
.pain-points h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.pain-points h2 span {
  color: #2563eb;
}
@media (max-width: 768px) {
  .pain-points h2 {
    line-height: 1.2;
  }
}
.pain-points .problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}
.pain-points .card {
  position: relative;
  padding-top: 3.5rem;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}
.pain-points .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.pain-points .card h3 {
  color: #1f2937;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}
.pain-points .card h3::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -5px;
  color: rgba(37, 99, 235, 0.5);
  font-size: 2rem;
  font-style: normal;
}
.pain-points .card p {
  color: rgb(67.7674418605, 89.6279069767, 120.2325581395);
  line-height: 1.6;
}
.pain-points .card p strong {
  color: #2563eb;
  font-weight: 600;
}

.credentials {
  padding: 4rem 0;
  background: #f3f4f6;
}
.credentials h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.credentials h2 span {
  position: relative;
}
.credentials h2 span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(37, 99, 235, 0.2);
  z-index: -1;
}
@media (max-width: 768px) {
  .credentials h2 {
    line-height: 1.2;
  }
}
.credentials .stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.credentials .stat {
  text-align: center;
  min-width: 120px;
}
.credentials .stat .number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.credentials .stat .label {
  font-size: 0.9rem;
  color: rgb(67.7674418605, 89.6279069767, 120.2325581395);
  font-weight: 500;
}

.process {
  padding: 4rem 0;
  background: white;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}
.process h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.process .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.process .steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  transform: translateX(-50%);
  z-index: 0;
}
.process .step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.process .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.process .step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.process .step h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}
.process .step p {
  color: rgb(67.7674418605, 89.6279069767, 120.2325581395);
}

.portfolio {
  padding: 4rem 0;
  background: #f3f4f6;
}
.portfolio__header {
  text-align: center;
  margin-bottom: 3rem;
}
.portfolio__header h2 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
}
.portfolio__header p {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
}
.portfolio__header a {
  color: #2563eb;
  font-weight: bold;
}
.portfolio__carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.portfolio__carousel-track {
  display: flex;
  gap: 2rem;
}
.portfolio__carousel .portfolio__carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.portfolio__carousel .portfolio__carousel-track::-webkit-scrollbar {
  display: none;
}
.portfolio__carousel-item {
  min-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
  transition: box-shadow 0.3s ease;
}
.portfolio__carousel-item:hover {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
}
.portfolio__carousel-arrows {
  display: none;
}
@media (max-width: 768px) {
  .portfolio__carousel-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0%;
    left: 1%;
    right: 1%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .portfolio__carousel-arrows button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.1);
    opacity: 0.8;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .portfolio__carousel-arrows button:hover {
    transform: scale(1.06);
    opacity: 1;
  }
}
.portfolio__carousel-device {
  position: relative;
  padding: 1.5rem 1.5rem 0;
  background: #ffffff;
}
.portfolio__carousel-device::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 20px;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}
.portfolio__carousel-device img {
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  width: 100%;
}
.portfolio__carousel-content {
  padding: 1rem 1.5rem 2rem 1.5rem;
}
.portfolio__carousel-content h3 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.portfolio__carousel-content p {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  margin-bottom: 1rem;
}
.portfolio__carousel-content .result {
  color: #2563eb;
  font-weight: bold;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1500px - 8rem));
  }
}
@media (max-width: 768px) {
  .portfolio__carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 20px;
  }
  .portfolio__carousel-track::-webkit-scrollbar {
    display: none;
  }
  .portfolio__carousel-item {
    min-width: calc(100% - 40px);
    scroll-snap-align: start;
  }
  @keyframes scroll-mobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1250px - 8rem));
    }
  }
}
.cta {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, rgb(18.5714285714, 76.1428571429, 202.4285714286) 100%);
  color: white;
}
.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta h2 span {
  position: relative;
}
.cta h2 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}
.cta p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .cta h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .cta p {
    font-size: 1.1rem;
  }
}
.cta .btn-primary {
  background: white;
  color: #2563eb;
  font-weight: 600;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  text-decoration: none;
}
.cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta .small {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.services {
  padding: 4rem 0;
  background: linear-gradient(175deg, #f3f4f6 0%, #ffffff 20%);
}
.services__header {
  text-align: center;
  margin-bottom: 3rem;
}
.services__header h1 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.services__header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f59e0b;
  border-radius: 2px;
}
.services__header p {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.services__card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.08);
  height: 100%;
  transition: transform box-shadow ease;
}
.services__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.12);
}
.services__card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2563eb;
}
.services__card-header {
  padding: 1.5rem 1.5rem 0;
}
.services__card-header h3 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.services__card-body {
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}
.services__card-body ul {
  list-style: none;
  padding-left: 0;
}
.services__card-body ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: "Manrope", sans-serif;
  color: #6b7280;
}
.services__card-body ul li::before {
  border-radius: 50%;
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}
.services__card-footer {
  margin-top: auto;
  padding: 1rem 1.5rem;
  background: rgba(37, 99, 235, 0.05);
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}
.services__card-footer a {
  display: inline-flex;
  width: 100%;
  align-items: center;
  font-family: "Inter", sans-serif;
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.services__card-footer a:hover {
  color: #2563eb;
}
.services__card-footer a::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.services__card-footer a:hover::after {
  transform: translateX(3px);
}
.services__category {
  grid-column: 1/-1;
  text-align: center;
  margin: 3rem 0 1rem;
}
.services__category h2 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services h1 {
    line-height: 1.3;
  }
}

.about {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: linear-gradient(175deg, #f3f4f6 0%, #ffffff 22%);
  font-family: "Inter", sans-serif;
}
.about p {
  color: #6b7280;
  line-height: 1.7;
}
.about__hero {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.about__hero-eyebrow {
  display: inline-block;
  font: 600 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.06em;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.about__hero-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.8vw, 3rem);
  margin: 0 auto 0.75rem;
  max-width: 26ch;
}
.about__hero-title span {
  background: linear-gradient(90deg, #2563eb 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__hero-sub {
  max-width: 65ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  align-items: start;
}
@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}
.about__visual {
  position: relative;
}
.about__visual .image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  position: relative;
}
.about__visual .image-container img {
  display: block;
  width: 100%;
  height: auto;
}
.about__visual .image-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(31, 41, 55, 0.78) 0%, rgba(31, 41, 55, 0) 85%);
  color: #ffffff;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
}
.about__visual .image-overlay span {
  position: relative;
  padding-inline: 0.75rem;
}
.about__visual .image-overlay span::after {
  content: "";
  position: absolute;
  right: -0.125rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f59e0b;
  transform: translate(50%, -50%);
}
.about__visual .image-overlay span:last-child::after {
  display: none;
}
.about__visual .service-badges {
  display: flex;
  gap: 0.6rem 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}
.about__visual .service-badges .badge {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font: 600 0.9rem/1 "Manrope", sans-serif;
  white-space: nowrap;
}
.about__strategic h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #1f2937;
  margin-bottom: 1.5rem;
  position: relative;
}
.about__strategic h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 64px;
  height: 3px;
  background: #f59e0b;
  border-radius: 3px;
}
.about__strategic .strategic-points {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.about__strategic .strategic-points .point {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}
.about__strategic .strategic-points .point:first-child {
  padding-top: 0;
}
.about__strategic .strategic-points .point:last-child {
  border-bottom: 0;
}
.about__strategic .strategic-points .point-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: #2563eb;
  translate: 0 0.15rem;
  flex-shrink: 0;
}
.about__strategic .strategic-points .point h3 {
  color: #1f2937;
  font-weight: 700;
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.about__strategic .strategic-points .point p {
  margin: 0;
}
.about__strategic .cta-box {
  background: linear-gradient(0deg, rgba(243, 244, 246, 0.65), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-left: 4px solid #f59e0b;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 10px;
}
.about__strategic .cta-box p {
  margin: 0 0 1rem;
  font-style: italic;
  color: #1f2937;
}
.about__strategic .cta-box p::before {
  content: "“";
  margin-right: 0.25rem;
  color: #f59e0b;
}
.about__strategic .cta-box p::after {
  content: "”";
  margin-left: 0.25rem;
  color: #f59e0b;
}
.about__strategic .cta-box .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb;
  color: #ffffff;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.about__strategic .cta-box .cta-btn:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}
.about__impact {
  margin-top: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.about__impact h2 {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.about__impact .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
}
.about__impact .stats-grid .stat-card {
  background: #ffffff;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.04);
}
.about__impact .stats-grid .stat-card strong {
  display: block;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #2563eb;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.about__impact .stats-grid .stat-card span {
  display: block;
  font-size: 0.95rem;
  color: #1f2937;
}
@media (prefers-reduced-motion: reduce) {
  .about * {
    animation: none !important;
    transition: none !important;
  }
}

.testimonials {
  padding: 4rem 1rem;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}
.testimonials__slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.testimonials .testimonials__card {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.testimonials .testimonials__card.active {
  display: block;
  opacity: 1;
}
.testimonials__header {
  margin-bottom: 3rem;
}
.testimonials__header h2 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  position: relative;
  display: inline-block;
}
.testimonials__header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f59e0b;
}
.testimonials__grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 180px;
}
.testimonials__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-sizing: border-box;
}
.testimonials__card.active {
  display: block;
  position: relative;
}
.testimonials__card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
}
.testimonials__card p {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonials__card-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials__card-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials__card-author h4 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.testimonials__card-author span {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  font-size: 0.9rem;
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonials__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(37, 99, 235, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonials__dots button.active {
  background-color: #2563eb;
}
@media (max-width: 768px) {
  .testimonials__grid {
    min-height: 350px;
  }
  .testimonials__card {
    padding: 1.5rem;
  }
  .testimonials__card p {
    font-size: 0.95rem;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tech-stack {
  grid-column: 1/-1;
  text-align: center;
  margin: 4rem 0;
}
.tech-stack h3 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  margin-bottom: 2rem;
}
.tech-stack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.tech-stack__item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
  transition: transform 0.3s ease;
}
.tech-stack__item:hover {
  transform: translateY(-5px);
}
.tech-stack__item img {
  height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: grayscale(100%);
}
.tech-stack__item span {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .tech-stack {
    margin-bottom: 0rem;
  }
}

.legal-page {
  padding: 4rem 0;
  background: #f3f4f6;
  line-height: 1.6;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.08);
  padding: 3rem;
}
@media (max-width: 768px) {
  .legal-container {
    padding: 2rem 1.5rem;
  }
}

.legal-section {
  margin-bottom: 3rem;
}
.legal-section h2 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f3f4f6;
}
.legal-section ul {
  margin-left: 1.5rem;
}
.legal-section ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1rem;
  list-style: none;
}
.legal-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.last-updated {
  font-family: "Manrope", sans-serif;
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.footer {
  background-color: rgb(21.8081395349, 28.8430232558, 38.6918604651);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  padding: 3rem 1rem;
}
.footer p {
  color: rgba(255, 255, 255, 0.7);
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer .footer-main .footer-brand {
  flex: 1 1 250px;
}
.footer .footer-main .footer-brand .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}
.footer .footer-main .footer-brand .tagline {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
.footer .footer-main .footer-brand .social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.footer .footer-main .footer-brand .social-links .social-icon {
  width: 36px;
  height: 36px;
  background-color: rgb(49.3837209302, 65.3139534884, 87.6162790698);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: #ffffff;
}
.footer .footer-main .footer-brand .social-links .social-icon:hover {
  background-color: #2563eb;
}
.footer .footer-main .services-container {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  gap: 2rem;
}
.footer .footer-main .services-container .service-column {
  flex: 1 1 30%;
  padding: 0.5rem 0;
}
.footer .footer-main .services-container .service-column .service-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.footer .footer-main .services-container .service-column .service-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-main .services-container .service-column .service-links li {
  margin-bottom: 0.3rem;
}
.footer .footer-main .services-container .service-column .service-links li a {
  font-size: 0.8rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.footer .footer-main .services-container .service-column .service-links li a:hover {
  color: #2563eb;
}
.footer .footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.8rem;
}
.footer .footer-bottom .copyright {
  color: white;
}
.footer .footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer .footer-bottom .legal-links a {
  color: white;
  text-decoration: none;
}
.footer .footer-bottom .legal-links a:hover {
  color: #2563eb;
}
@media (max-width: 768px) {
  .footer .footer-brand {
    flex: 1 1 1px !important;
  }
  .footer .footer-main {
    flex-direction: column;
  }
  .footer .services-container {
    flex-direction: column;
    gap: 1rem !important;
    flex: 2 1 450px !important;
  }
  .footer .services-container .service-column {
    flex: 1 1 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer .services-container .service-column:last-child {
    border-bottom: none;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer .footer-bottom .legal-links {
    justify-content: center;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background-color: #ffffff;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

/*# sourceMappingURL=style.css.map */
