@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  background-color: #040427;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Common Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes colorPulse {
  0% {
    color: #4dd5ff;
  }
  100% {
    color: #12b4e6;
  }
}
a {
  text-decoration: none;
}
.btn-primary-custom {
    background: linear-gradient(45deg, #8a2be2 0%, #00bfff 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center; /* Added line */
    gap: 8px;
    text-align: center;       /* Ensures inline text centers if needed */
    width: fit-content ;
}

.btn-outline-custom {
  background: transparent;
  border: 1px solid #fff;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content ;
}

.btn-custom-primary {
 background: transparent;
  border: 1px solid #fff;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content ; 
}
/* =========================================hero====================================== */

/* Hero Section Styles */
.hero-section {
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section:after {
  content: "";
  padding: 100px 0;
  background: url("../images/svg/hero-bg.svg");
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 0px 0px;
  margin-top: -300px;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  width: 100%;
  padding: 50px 20px 0;
}

/* Dynamic Content Styles */
.content-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.content-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.content-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.top-text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.home-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}



.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-1px);
}

.dashboard-preview {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: rgba(30, 27, 75, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 20px;
  transition: opacity 0.5s ease-in-out;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.slide.active {
  opacity: 1;
}

.slide-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.window-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ef4444;
}
.control.yellow {
  background: #f59e0b;
}
.control.green {
  background: #10b981;
}

.dashboard-elements {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.sidebar-mock {
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  padding: 20px;
  height: 300px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.main-content-mock {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  padding: 20px;
  height: 300px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.mock-element {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}

.mock-element.wide {
  height: 20px;
}
.mock-element.medium {
  height: 16px;
  width: 60%;
}
.mock-element.small {
  height: 12px;
  width: 40%;
}

.mock-chart {
  background: rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  height: 60px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.mock-chart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.6) 20%,
    rgba(168, 85, 247, 0.4) 40%,
    rgba(139, 92, 246, 0.7) 60%,
    rgba(168, 85, 247, 0.3) 80%
  );
}

.mock-table-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.mock-cell {
  background: rgba(255, 255, 255, 0.1);
  height: 12px;
  border-radius: 4px;
  flex: 1;
}

.mock-cell.small {
  flex: 0.5;
}
.mock-cell.large {
  flex: 2;
}

.mock-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  margin-bottom: 15px;
}

.mock-notification {
  background: rgba(239, 68, 68, 0.2);
  border-left: 3px solid #ef4444;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.mock-card {
  background: rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: -25px;
}
.next {
  right: -25px;
}

.side-logo {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px;
  margin-top: -300px;
 

}

.logo-item {
  width: 120px;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.logo-item.active {
  background: linear-gradient(45deg, #8a2be2, #00bfff);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .side-logo {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .home-title {
    font-size: 35px;
  }
  .hero-section {
    padding: 50px 0;
  }
  .subtitle {
    font-size: 16px;
  }
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    text-align: center;
  }
  .side-logo {
    display: none;
  }
  .hero-slider-container {
    height: 400px;
  }
  .dashboard-elements {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .sidebar-mock,
  .main-content-mock {
    height: 150px;
  }
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  .prev {
    left: -20px;
  }
  .next {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .home-title {
    font-size: 32px;
  }
  .hero-content {
    padding: 80px 15px;
  }
  .hero-slider-container {
    height: 300px;
    border-radius: 15px;
  }
  .slide-content {
    padding: 20px;
  }
  .dashboard-elements {
    gap: 10px;
  }
  .sidebar-mock,
  .main-content-mock {
    height: 100px;
    padding: 15px;
  }
}

/* Ripple effect for buttons */
.btn-primary-custom,
.btn-outline-custom {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* =================================================================================== */
/* Common Components */
.container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 48px;
  color: white;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.highlight {
  color: #74e4e2;
  background: linear-gradient(45deg, #00d4ff, #74e4e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*============================== About Section ============================*/

.home-about img {
  width: 100%;
}

.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-image: url("../images/svg/blur.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

.about-header {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 30px;
  font-weight: 400;
}

.who-are-we {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 25px;
}



.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 15px;
  height: 500px;
}

.image-placeholder {
  background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-5px);
}

.image-placeholder:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.image-placeholder:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.image-placeholder:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.image-placeholder:nth-child(4) {
  grid-column: 2;
  grid-row: 2 / 4;
}

.image-placeholder:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
  border: 3px solid #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.image-placeholder:hover::before {
  transform: translateX(100%);
}

/*============================== Services Section =========================================*/
.services-section {
  position: relative;
  padding: 100px 0;
  min-height: 100vh;
  overflow: hidden;
  background-image: url("../images/svg/bg-curve.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.geometric-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.geometric-lines::before,
.geometric-lines::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(0, 191, 255, 0.3) 50%,
    transparent 60%
  );
  width: 200%;
  height: 2px;
  animation: moveLines 8s linear infinite;
}

.geometric-lines::before {
  top: 20%;
  left: -50%;
}

.geometric-lines::after {
  bottom: 30%;
  right: -50%;
  animation-delay: -4s;
}

@keyframes moveLines {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(100px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}

.section-subtitle {
  text-align: center;
  color: #b8c5d1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  min-height: 355px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(138, 43, 226, 0.1) 0%,
    rgba(0, 191, 255, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-20px);
  border-color: rgba(0, 191, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(45deg, #8a2be2, #00bfff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #00bfff;
}

.service-description {
  color: #b8c5d6;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}



/*======================================== Why Choose Us Section ====================================*/
.multify-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-image: url("../images/svg/by-why.svg");
  background-size: cover;
  background-position: center 100%;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.multify-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 50px 50px;
  z-index: 1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
.why-choose-title h2 {
  font-size: 48px;
  color: white;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.why-choose-title h2 span {
  color: rgb(77, 213, 255);
}

.why-subtitle {
  text-align: center;
  color: #b8c5d1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.arrow {
  position: absolute;
  left: 40%;
}
.arrow-1 {
  left: 23%;
  top: 0%;
}
.arrow-2 {
  left: 58%;
  top: 20%;
  transform: scaleY(-1);
}
.steps-container {
  position: relative;
  margin-top: 60px;
}

.step-item {
  text-align: center;
  margin-bottom: 40px;
}

.step-icon img {
  width: 70px;
}

.step-icon {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.step-icon:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-badge {
  background: #ffffff;
  color: #1a1a2e;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.step-badge:hover {
  background: #4dd5ff;
  color: #ffffff;
  transform: scale(1.05);
}

.step-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.step-item:hover .step-title {
  color: #4dd5ff;
  transform: translateY(-5px);
}

.step-description {
  color: #b8c5d1;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.step-item:hover .step-description {
  color: #ffffff;
}

/* Products Section */

.header {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}

.header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
}

.header p {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-section {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.product-card {
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

.product-img {
  background-image: url("../images/svg/blur.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 40px 0;
}

.product-img img {
  width: 100%;
  display: block;
}

.product-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  border-color: rgba(138, 43, 226, 0.3);
}

.product-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.product-description {
  color: #b0b0b0;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 1rem;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.features-list li {
  padding: 8px 0;
  color: #d0d0d0;
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background-image: url("../images/svg/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.features-list li:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.product-btn {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
  color: white;
}



/* Statistics Section */
.stats-card {
  background: linear-gradient(180deg, #7227fc 0%, #4f05d8 100%);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  color: white;
  border: none;
  box-shadow: 0 20px 40px #933cff4d;
  transition: all 0.3s ease;
  height: auto;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(108, 92, 231, 0.4);
}

.stats-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.stats-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stats-label {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-title {
    font-size: 42px;
  }
  .section-title {
    font-size: 3rem;
  }
  .testimonial-cards {
    width: 350px;
    height: 320px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }
  .about-title {
    font-size: 36px;
  }
  .image-grid {
    height: 400px;
    margin-top: 30px;
  }
  .testimonial-container {
    flex-direction: column;
    gap: 3rem;
  }
  .testimonial-content {
    padding-left: 0;
    text-align: center;
  }
  .testimonial-cards {
    width: 400px;
    height: 350px;
  }
  .testimonial-card {
    width: 100%;
    height: 100%;
  }
  .rating {
    justify-content: center;
  }
  .navigation {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .why-choose-title h2 {
    font-size: 30px;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .about-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .who-are-we {
    font-size: 16px;
    margin-top: 20px;
  }
  .image-grid {
    height: 300px;
    gap: 10px;
  }

  .section-title {
    font-size: 32px;
  }
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .multify-section {
    padding: 60px 0;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 60px;
  }
  .step-icon {
    width: 100px;
    height: 100px;
  }
  .step-icon i {
    font-size: 35px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-description {
    font-size: 13px;
  }
  .header h1 {
    font-size: 2.2rem;
    text-align: left;
  }
  .product-card {
    padding: 0;
    margin-bottom: 0;
  }
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary-custom,
  .btn-secondary-custom {
    text-align: center;
    width: 100%;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .testimonial-cards {
    width: 320px;
    height: 280px;
  }
  .client-name {
    font-size: 1.5rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .testimonial-section {
    padding: 150px 0;
  }
  .stats-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .stats-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .stats-number {
    font-size: 40px;
  }
  .stats-label {
    font-size: 16px;
  }
  .header p {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 24px;
  }
  .about-description {
    font-size: 14px;
  }
  .image-grid {
    height: 250px;
    gap: 8px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .step-icon {
    width: 90px;
    height: 90px;
  }
  .step-icon i {
    font-size: 30px;
  }
  .header {
    padding: 60px 0 40px;
  }
  .header h1 {
    font-size: 1.8rem;
  }
  .product-title {
    font-size: 1.5rem;
  }
  .img-main {
    height: 150px;
  }
  .img-small {
    height: 100px;
  }
  .section-title {
    font-size: 2rem;
  }
  .testimonial-cards {
    width: 280px;
    height: 250px;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .testimonial-container {
    gap: 2rem;
  }
  .stats-card {
    padding: 25px 15px;
  }
  .stats-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .stats-number {
    font-size: 36px;
  }
  .stats-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 0;
  }
  .about-title {
    font-size: 22px;
  }
  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    height: auto;
  }
  .image-placeholder:nth-child(1),
  .image-placeholder:nth-child(2),
  .image-placeholder:nth-child(3),
  .image-placeholder:nth-child(4),
  .image-placeholder:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
    height: 120px;
  }
  .product-img {
    margin: 40px 0;
    display: flex;
    justify-content: center;
  }
  .about-content {
    text-align: center;
}

}
