/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fff;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

button {
  cursor: pointer;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #2c1f52;
}

h2 {
  font-size: 3.125rem;
  letter-spacing: -0.96px;
  color: #2c1f52;
}

h3 {
  font-size: 1.875rem;
  color: #2c1f52;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  font-size: 1.125rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid #52459f;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Header */
.header {
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.3s ease;
}
.logo-container:hover {
  transform: scale(1.05);
}
.logo-image img {
  width: 8rem;
  height: 2rem;
  border-radius: 0.5rem;
}
.logo-text {
  color: #475467;
  font-size: 1.25rem;
  font-weight: 600;
}
.main-nav {
  display: flex;
  gap: 2rem;
}
.nav-item {
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  position: relative;
}
.nav-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #52459f;
  transition: width 0.3s ease;
}
.nav-item:hover::after {
  width: 100%;
}
.call-btn {
  background-color: #52459f;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(82, 69, 159, 0.1);
}
.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(82, 69, 159, 0.2);
  background-color: #463c8a;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background 0.3s;
  z-index: 1001;
}
.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  padding: 1rem;
  z-index: 999;
}
.mobile-nav.active {
  display: flex;
}
@media (max-width: 768px) {
  .main-nav,
  .call-btn {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile-nav {
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .mobile-nav.active {
    display: flex;
  }
  .call-btn-m {
    background-color: #52459f;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    border: none;
  }
}

.logo-text-footer {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-container {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.375rem 5rem;
  z-index: 1;
}

/* Since we're now using the SVG from the HTML, let's adjust the hero-bg display */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

/* Ensure hero content is above the overlay */
.hero-content {
  position: relative;
  max-width: 919px;
  animation: fadeIn 1s ease-out;
  z-index: 2;
}

.hero-tags {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid #d1d5db;
  display: inline-flex;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.hero-tags:hover {
  transform: translateY(-3px);
}

.hero-tags .dot {
  margin: 0 12px;
  color: #52459f;
  opacity: 0.7;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #1f2937;
  max-width: 678px;
  margin: 0 auto 2.5rem;
}

.hero-illustration {
  width: 100%;
  aspect-ratio: 3.2;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hero-illustration:hover {
  transform: translateY(-10px);
}

/* Services Section
  .services {
    padding: 5rem;
  }
  
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 5rem;
  }
  
  .service-card {
    position: relative;
    border: 1px solid rgba(202,201,230,1);
    border-radius: 1.5rem;
    padding: 2rem;
    width: calc(50% - 1rem);
    min-width: 559px;
  }
  
  .service-card.full-width {
    width: 100%;
    margin-top: 2rem;
  }
  
  .service-icon {
    background-color: rgba(82,69,159,1);
    width: 5rem;
    height: 5rem;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid rgba(205,204,255,1);
  }
  
  .service-icon img {
    width: 2rem;
    aspect-ratio: 1;
    object-fit: contain;
  }
  
  .service-content {
    margin-top: 2rem;
  }
  
  .service-title {
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: 500;
  }
  
  .service-description {
    color: #4B5563;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
  
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
  }
  
  .service-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.55rem;
    border-radius: 50px;
    border: 2px solid rgba(202,201,230,1);
    font-weight: 700;
    color: #52459F;
  }
  
  .service-tag img {
    width: 2rem;
    aspect-ratio: 1;
    object-fit: contain;
  }
  
  .service-badge {
    position: absolute;
    background-color: white;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(234,234,245,1);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #52459F;
  }
  
  .service-badge img {
    width: 1.5rem;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 50px;
  } */

/* About Section */
.about {
  position: relative;
  padding: 5rem 2rem 24rem;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
}

.about-image {
  position: absolute;
  width: 100%;
  max-width: 1049px;
  height: auto;
  right: 0;
  bottom: 0;
  z-index: 0;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.about-container {
  position: relative;
  z-index: 1;
}

.about .section-tag {
  margin-bottom: 2.5rem;
}

.about .section-title {
  margin-bottom: 2.5rem;
  line-height: 2.2rem;
}

.about-description {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.875rem;
  max-width: 768px;
  margin: 0 auto;
}

.about-container:hover + .about-image {
  transform: translateY(-10px);
}

/* Clients Section */
.clients {
  background-color: white;
  padding: 5rem;
  min-height: 272px;
  display: flex;
  justify-content: center;
}

.clients-title {
  color: #4b5563;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 1rem;
  align-items: center;
}

.clients-grid img {
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.clients-grid img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Divider */
.divider {
  width: 100%;
}

.divider img {
  width: 100%;
  aspect-ratio: 5.71;
  object-fit: contain;
}

/* Blogs Section */
.blogs {
  background-color: white;
  padding: 5rem;
}

.blogs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.blog-card {
  flex: 1;
  min-width: 320px;
  flex-basis: 0%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.69;
  object-fit: contain;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-content {
  margin-top: 2rem;
}

.blog-meta {
  color: #594da9;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #101828;
}

.blog-title {
  flex: 1;
  font-weight: 600;
  font-size: 1.5rem;
}

.blog-title-row img {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-title-row img {
  transform: translateX(5px);
}

.blog-description {
  color: #4b5563;
  margin-top: 0.5rem;
  line-height: 1.5rem;
}

.blog-categories {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-category {
  padding: 0.125rem 0.625rem;
  border-radius: 1rem;
}

.blog-category.leadership {
  background-color: rgba(234, 234, 245, 1);
  color: #52459f;
}

.blog-category.management {
  background-color: #e5e7eb;
  color: #4b5563;
}

.blog-category.product {
  background-color: rgba(234, 234, 245, 1);
  color: #52459f;
}

.blog-category.research {
  background-color: #fae8ff;
  color: #d946ef;
}

.blog-category.frameworks {
  background-color: #e5e7eb;
  color: #374151;
}

.blog-category.design {
  background-color: rgba(234, 234, 245, 1);
  color: #52459f;
}

.view-all-btn {
  background-color: #52459f;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 5rem;
  border-radius: 67px;
  border: 1px solid #52459f;
  margin: 2.5rem auto 0;
  display: block;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(82, 69, 159, 0.2);
  background-color: #463c8a;
}

/* Contact Section */
.contact {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.contact-container {
  position: relative;
  background-color: #52459f;
  border-radius: 1.5rem;
  padding: 2.5rem;
  min-height: 674px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-bg {
  position: absolute;
  width: 1280px;
  height: 674px;
  right: 0;
  bottom: 0;
  z-index: 0;
  aspect-ratio: 1.9;
  object-fit: contain;
}

.contact-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.contact-title {
  color: white;
  font-size: 3.125rem;
  line-height: 3.75rem;
  letter-spacing: -0.96px;
  margin-bottom: 1rem;
}

.contact-description {
  color: #e5e7eb;
  font-size: 1.25rem;
  line-height: 1.875rem;
}

.contact-form-container {
  position: relative;
  z-index: 1;
  background-color: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  width: 496px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.form-title {
  color: #111827;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75;
}

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #6b7280;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #52459f;
  box-shadow: 0 0 0 3px rgba(82, 69, 159, 0.2);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #52459f;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 67px;
  border: none;
  width: 100%;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(82, 69, 159, 0.2);
  background-color: #463c8a;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #f9fafb;
}

.upper-footer {
  padding: 4rem 0 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-company {
  width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.688rem;
  width: 142px;
}

.company-description {
  margin-top: 2rem;
  color: #eaecf0;
  line-height: 1.5;
}

.footer-links {
  flex: 1;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-heading {
  color: #d0d5dd;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-item {
  color: #eaecf0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.footer-nav-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #eaecf0;
  transition: width 0.3s ease;
}

.footer-nav-item:hover {
  color: #fff;
}

.footer-nav-item:hover::after {
  width: 100%;
}

.lower-footer {
  background-color: #111827;
  padding: 3rem 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.copyright {
  flex: 1;
  color: #d0d5dd;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-icons img {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: translateY(-3px);
}

.social-spacer {
  width: 1.5rem;
  height: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header {
    padding: 1.25rem;
  }

  .hero-container {
    padding: 3.375rem 1.25rem;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 3.313rem;
  }

  h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  .about {
    padding: 5rem 1.25rem 6.25rem;
  }

  .services,
  .testimonials,
  .blogs,
  .contact,
  .clients {
    padding: 5rem 1.25rem;
  }

  .service-card {
    min-width: auto;
    width: 100%;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form-container {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .about-image {
    max-width: 100%;
    height: 350px;
  }
}

/* Services Showcase Section */
.services-showcase {
  padding: 5rem 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-showcase {
    padding: 5rem;
  }
}

/* Header Styles */
.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.services-pill {
  background-color: white;
  border: 1px solid #52459f;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  display: inline-block;
  font-size: 1.125rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 3rem;
  }
}

/* Cards Container */
.services-cards-container {
  margin-top: 5rem;
  width: 100%;
}

@media (max-width: 767px) {
  .services-cards-container {
    margin-top: 2.5rem;
  }
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

/* Service Cards */
.service-card {
  border: 2px solid rgba(202, 201, 230, 1);
  background: linear-gradient(124deg, #e1dcfd 0%, #fff 60.86%, #f9f8ff 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .staff-card {
    width: calc(50% - 1rem);
  }

  .consulting-card {
    flex: 1;
  }

  .products-card {
    width: 100%;
    padding: 2.5rem;
  }
}

.service-icon-container {
  background-color: #52459f;
  width: 5rem;
  height: 5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid rgba(205, 204, 255, 1);
  z-index: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon-container {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(82, 69, 159, 0.3);
}

.service-icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.service-content {
  margin-top: 2rem;
  text-align: center;
}

.service-title {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  text-align: left;
}

.service-description {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.875;
  text-align: left;
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: left;
}

.service-tag {
  display: flex;
  align-items: left;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  border: 2px solid rgba(202, 201, 230, 1);
  font-weight: 700;
  color: #52459f;
  white-space: nowrap;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-tag:hover {
  transform: translateY(-2px);
  background-color: rgba(234, 234, 245, 0.5);
}

.tag-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

/* Staff Augmentation Card Floating Elements */
.floating-expertise {
  position: absolute;
  display: flex;
  gap: 5px;
  right: 63px;
  top: 1rem;
  width: 348px;
  max-width: 100%;
  height: 116px;
  font-size: 0.875rem;
  color: #52459f;
  z-index: 1;
}

@media (max-width: 1200px) {
  .floating-expertise {
    display: none;
  }
}

.expertise-column {
  display: flex;
  flex-direction: column;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.expertise-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  border-radius: 50px;
}

.indent {
  margin-left: 1.375rem;
}

/* Consulting Card Floating Elements */
.consulting-expertise-connections {
  position: absolute;
  top: 1.375rem;
  right: 3.0625rem;
  width: 420px;
  max-width: 100%;
  height: 108px;
  font-size: 0.875rem;
  color: #52459f;
  z-index: 1;
}

@media (max-width: 1200px) {
  .consulting-expertise-connections {
    display: none;
  }
}

.expertise-web {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.expertise-connections {
  margin-top: -1.125rem;
  padding-left: 2.6875rem;
}

.connection-lines {
  display: flex;
  gap: 5px;
  width: 185px;
  max-width: 100%;
  white-space: nowrap;
}

.connection-line {
  width: 97px;
  margin-top: 0.5625rem;
  aspect-ratio: 4.41 / 1;
  object-fit: contain;
}

.expertise-devops {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
}

.connection-line-vertical {
  width: 61px;
  aspect-ratio: 1.97 / 1;
  object-fit: contain;
  margin-top: -0.8125rem;
  margin-left: 2.1875rem;
}

.expertise-ai {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: -1.1875rem;
  margin-left: 1.25rem;
}

.expertise-bottom-row {
  display: flex;
  width: 356px;
  max-width: 100%;
  justify-content: space-between;
  gap: 1.25rem;
}

.expertise-cloud,
.expertise-ml {
  display: flex;
  flex-direction: column;
}

.connection-line-down {
  width: 3rem;
  object-fit: contain;
}

/* Products & Solutions Card Floating Tags */
.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background-color: white;
  border: 1px solid rgba(234, 234, 245, 1);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #52459f;
  font-weight: 500;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

@media (max-width: 1200px) {
  .floating-tag {
    display: none;
  }
}

.floating-tag-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  border-radius: 50px;
}

.asset-management {
  left: 512px;
  top: 27px;
}

.data-harmonization {
  left: 536px;
  top: 111px;
}

.performance-optimization {
  right: 312px;
  top: 52px;
}

.customer-insights {
  right: 299px;
  top: 128px;
}

.inventory-tracking {
  right: 39px;
  top: 96px;
}

.asset-utilization {
  left: 256px;
  top: 84px;
}

.predictive-analytics {
  right: 55px;
  top: 27px;
}

/* Testimonials section */
.testimonials-section {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.testimonials-header {
  max-width: 768px;
  margin: 0 auto 3rem;
  text-align: center;
}

.testimonials-label {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.7;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  background-color: rgba(43, 31, 82, 0.08);
  color: #2c1f52;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: #2c1f52;
  margin-top: 1rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.testimonials-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-card {
  max-width: 350px;
  scroll-snap-align: start;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background-color: white;
  border: 1px solid #f0f0f0;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: grab;
  transition: transform 0.3s ease;
}

.testimonial-card:active {
  cursor: grabbing;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.testimonial-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.05);
}

.star-rating {
  display: flex;
  gap: 0.5rem;
}

.star-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.star-icon-custom {
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(248, 164, 1, 1);
  margin: auto 0;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  margin-top: 1rem;
  text-align: left;
  width: 100%;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.875;
  color: #666;
  margin-top: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 4rem 2rem;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 400px;
  }

  .testimonials-container {
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 5rem;
  }

  .testimonial-card {
    min-width: 330px;
  }
}

@media (max-width: 480px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .star-rating {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 260px;
    padding: 1.5rem;
  }

  .testimonial-avatar {
    width: 4rem;
    height: 4rem;
  }

  .testimonial-name {
    font-size: 1.25rem;
  }
}

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

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

/* Enhanced Responsive Breakpoints */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .services-cards {
    flex-direction: column;
  }

  .staff-card,
  .consulting-card {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .hero-container {
    padding: 3rem 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about {
    padding: 5rem 2rem 15rem;
  }

  .about-image {
    height: auto;
    width: 100%;
    max-width: 600px;
    left: 21%;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-company {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
  }

  .services-showcase,
  .about,
  .clients,
  .testimonials-section,
  .blogs,
  .contact {
    padding: 3rem 1.25rem;
  }

  .about {
    padding-bottom: 12rem;
  }

  .testimonials-container {
    padding: 0.5rem;
  }

  .blogs-grid {
    gap: 1.5rem;
  }

  .blog-card {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-container {
    padding: 2rem 1rem;
    min-height: 450px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-description {
    font-size: 1rem;
  }

  .service-tags {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about {
    padding-bottom: 10rem;
  }

  .about-image {
    height: 250px;
  }

  .clients-grid {
    justify-content: center;
  }

  .testimonial-card {
    min-width: 100%;
    padding: 1.5rem;
  }

  .contact-container {
    padding: 1.5rem;
  }

  .contact-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .contact-description {
    font-size: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Interactive Elements and Animations */

/* General Hover Effects */
.nav-item,
.service-card,
.blog-card,
.testimonial-card,
.floating-tag {
  will-change: transform;
}

/* Service Cards Enhanced Animation */
.service-card {
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.service-icon-container {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-icon-container {
  transform: rotate(8deg) scale(1.1);
}

/* Floating Tags Animation */
.floating-tag {
  animation: floatTag 3s ease-in-out infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-tag:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: rgba(82, 69, 159, 0.1);
}

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

/* Stagger floating tags animation */
.floating-tag:nth-child(1) {
  animation-delay: 0s;
}
.floating-tag:nth-child(2) {
  animation-delay: 0.5s;
}
.floating-tag:nth-child(3) {
  animation-delay: 1s;
}
.floating-tag:nth-child(4) {
  animation-delay: 1.5s;
}
.floating-tag:nth-child(5) {
  animation-delay: 2s;
}

/* Hero Section Enhancements */
.hero-tags .tag {
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-tags:hover .tag {
  color: #52459f;
}

.hero-tags .dot {
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Call Button Animation */
.call-btn,
.call-btn-m {
  overflow: hidden;
  position: relative;
}

.call-btn::after,
.call-btn-m::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.call-btn:hover::after,
.call-btn-m:hover::after {
  width: 200px;
  height: 200px;
}

/* Section Headers Animation */
.section-tag {
  animation: slideInTag 0.6s ease-out;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.section-tag:hover {
  transform: scale(1.05);
  background-color: rgba(82, 69, 159, 0.1);
}

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

/* Blog Cards Enhanced */
.blog-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card:hover .blog-title {
  color: #52459f;
}

.blog-card img {
  transition: transform 0.5s ease;
}

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

/* Form Input Animations */
.form-group input,
.form-group textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #52459f;
  box-shadow: 0 0 0 3px rgba(82, 69, 159, 0.1);
}

/* Submit Button Animation */
.submit-btn {
  transition: transform 0.3s ease, background-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Footer Links Animation */
.footer-nav-item {
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer-nav-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-nav-item:hover {
  transform: translateX(5px);
}

.footer-nav-item:hover::after {
  width: 100%;
}

/* Social Icons Animation */
.social-icons img {
  transition: transform 0.3s ease;
  will-change: transform;
}

.social-icons img:hover {
  transform: translateY(-5px) rotate(8deg);
}

/* Logo Animation */
.logo-container {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-container:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Testimonial Avatar Animation */
.testimonial-avatar {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
}

/* Star Rating Animation */
.star-icon {
  transition: transform 0.3s ease;
}

.star-rating:hover .star-icon {
  transform: scale(1.2);
}

/* Add smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  background: linear-gradient(to right, #52459f, #6c63ff);
  z-index: 1001;
  transition: width 0.1s ease;
}
