/* Section container */
.section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background-color: #f9f9f9;
}

/* Light text color (optional override) */
.tc-grey-alt {
  color: #333;
}

/* Background image styling */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index:0;
  overflow: hidden;
}

.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.2) contrast(1.1) saturate(1.1);
}



/* Content wrapper */
.container {
  position: relative;
  z-index: 2;
}

.text-block {
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.block-pad-80 {
  padding: 80px;
}

.heading-xs {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  position: relative;
  margin-bottom: 20px;
}

.dash::before {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #ff2c52;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.text-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Button styling */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #ff2c52;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #d20036;
}

/* Responsive styles */
@media (max-width: 768px) {
  .text-block {
    padding: 40px 25px;
  }

  .block-pad-80 {
    padding: 40px 25px;
  }

  .text-block h2 {
    font-size: 22px;
  }

  .dash::before {
    left: -30px;
  }
}
.clients-section {
  background-color: #fff;
}

.section-title h6 {
  font-weight: 600;
  letter-spacing: 1px;
  color: #ff2c60;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

.client-logo {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}
/* Base Card Style */
.about-category-item {
  background-color: #ffffff;
  border: 1px solid rgba(124, 108, 255, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Gradient background on hover */
.about-category-item:hover {
  background: linear-gradient(135deg, #7c6cff 0%, #8c88ff 100%);
  box-shadow: 0 16px 30px rgba(124, 108, 255, 0.25);
  transform: translateY(-6px);
}

/* Icon Circle */
.about-icon {
  font-size: 40px;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f0ff;
  color: #7c6cff;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

/* Icon Hover Animation */
.about-category-item:hover .about-icon {
  background-color: #ffffff;
  color: #7c6cff;
  transform: scale(1.1) rotate(12deg);
}

/* Text Style */
.about-text .title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.25px;
  transition: color 0.4s ease-in-out;
}

/* Change text color on hover */
.about-category-item:hover .title {
  color: #ffffff;
}

/* 🌘 Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .about-category-item {
    background-color: #232338;
    border: 1px solid rgba(124, 108, 255, 0.25);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  }

  .about-icon {
    background-color: #333355;
    color: #b1aaff;
  }

  .about-text .title {
    color: #f0f0ff;
  }

  .about-category-item:hover {
    background: linear-gradient(135deg, #4c46a5 0%, #7c6cff 100%);
  }

  .about-category-item:hover .title {
    color: #ffffff;
  }

  .about-category-item:hover .about-icon {
    background-color: #ffffff;
    color: #7c6cff;
  }
}
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

/* Section Background Setup */
/* === Section Background Setup === */
.section.section-x {
  position: relative;
  padding: 100px 0;
  background-color: #0f172a;
}

.section.section-x .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section.section-x .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.section.section-x .container {
  position: relative;
  z-index: 2;
}

/* === Section Header === */
.section-head h5,
.section-head h2 {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.heading-xs {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* === Feature Card Styling === */
.feature-s2 {
  background: #fff;
  border-radius: 12px;
  padding: 60px 30px 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
}

.feature-s2:hover {
  background-color: #010917;           /* Changes background on hover */
  transform: translateY(-6px);         /* Moves the element slightly upward */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);  /* Adds soft shadow */
}

.feature-s2:hover .icon,
.feature-s2:hover .tc-primary {
  color: #0a22d2;
}

.feature-s2:hover p {
  color: #010b12;
}

/* === Icon Styling === */
.icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

/* === Text Content Styling === */
.tc-primary {
  position: relative;
  z-index: 2;
  color: #f43f5e;
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.feature-content p {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* === Responsive === */
@media (max-width: 768px) {
  .section-head h2 {
    font-size: 28px;
  }

  .icon {
    font-size: 52px;
  }

  .feature-s2 {
    margin-bottom: 30px;
  }
}
