/* Industries Section */
.industries_area {
  padding: 100px 0;
  background: #f9f9f9;
}

.industries_title {
  text-align: center;
  margin-bottom: 60px;
}

.industries_title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #263b5e;
  margin-bottom: 15px;
}

/* Make Bootstrap columns stretch */
.industries_area .row > div {
  display: flex;
}

/* Equal height cards */
.industries_item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.industries_item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.industries_item .icon {
  font-size: 50px;
  color: #5e2ced;
  margin-bottom: 20px;
}

.industries_item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #263b5e;
  margin-bottom: 15px;
}

.industries_item p {
  font-size: 15px;
  line-height: 26px;
  color: #677294;
}
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(
      circle at 29% 55%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 4%,
      transparent 4%,
      transparent 44%,
      transparent 44%,
      transparent 100%
    ),
    radial-gradient(
      circle at 85% 89%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 51%,
      transparent 51%,
      transparent 52%,
      transparent 52%,
      transparent 100%
    ),
    radial-gradient(
      circle at 6% 90%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 53%,
      transparent 53%,
      transparent 64%,
      transparent 64%,
      transparent 100%
    ),
    radial-gradient(
      circle at 35% 75%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 6%,
      transparent 6%,
      transparent 98%,
      transparent 98%,
      transparent 100%
    ),
    radial-gradient(
      circle at 56% 75%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 16%,
      transparent 16%,
      transparent 23%,
      transparent 23%,
      transparent 100%
    ),
    radial-gradient(
      circle at 42% 0%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 3%,
      transparent 3%,
      transparent 26%,
      transparent 26%,
      transparent 100%
    ),
    radial-gradient(
      circle at 29% 28%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 51%,
      transparent 51%,
      transparent 75%,
      transparent 75%,
      transparent 100%
    ),
    radial-gradient(
      circle at 77% 21%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 35%,
      transparent 35%,
      transparent 55%,
      transparent 55%,
      transparent 100%
    ),
    radial-gradient(
      circle at 65% 91%,
      hsla(329, 0%, 99%, 0.05) 0%,
      hsla(329, 0%, 99%, 0.05) 46%,
      transparent 46%,
      transparent 76%,
      transparent 76%,
      transparent 100%
    ),
    linear-gradient(45deg, rgb(83, 91, 235), rgb(76, 11, 174));
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 3rem;
}

.text-content {
  flex: 1;
  max-width: 500px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(99, 102, 241, 0.1);
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.gradient-text {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

.gradient-text span {
  display: block;
}

.description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease-out;
}

.banner-buttons {
  display: flex;
  gap: 16px;
  animation: fadeInUp 1.2s ease-out;
}

.cta-buttons {
  font-size: 14px;
  border: 2px solid #ffffff;
  padding: 10px 39px;
}

.visual-content {
  flex: 1;
  position: relative;
  height: 500px;
}

.device-mockup {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-frame {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  /* background: #7029fd; */
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.icon-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: float 5s ease-in-out infinite;
  animation-delay: var(--delay);
}

.icon-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.icon-item:nth-child(1) {
  top: 10%;
  left: 10%;
}

.icon-item:nth-child(2) {
  top: 20%;
  right: 15%;
}

.icon-item:nth-child(3) {
  bottom: 30%;
  left: 5%;
}

.icon-item:nth-child(4) {
  top: 60%;
  right: 10%;
}

.icon-item:nth-child(5) {
  bottom: 15%;
  left: 20%;
}

.icon-item:nth-child(6) {
  top: 40%;
  right: 25%;
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    max-width: 100%;
  }

  .gradient-text {
    font-size: 36px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .visual-content {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .gradient-text {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* Services Grid */
.services-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 2fr));
  gap: 30px;
}

/* Service Card */
.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 5px solid transparent;
}

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

.service-card--bookkeeping {
  border-top-color: #1e3a8a;
}

.service-card--taxation {
  border-top-color: #166534;
}

.service-card--advisory {
  border-top-color: #6b21a8;
}

.service-card--it-insurance {
  border-top-color: #c2410c;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #fff;
}

.service-card--bookkeeping .service-card__icon {
  background: #1e3a8a;
}

.service-card--taxation .service-card__icon {
  background: #166534;
}

.service-card--advisory .service-card__icon {
  background: #6b21a8;
}

.service-card--it-insurance .service-card__icon {
  background: #c2410c;
}

.service-card__header h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.service-card__content p {
  font-size: 0.95rem;
  color: #666;
  flex-grow: 1;
}

.service-card__benefits {
  margin-top: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    padding 0.4s ease;
}

.service-card__benefits.active {
  max-height: 200px;
  opacity: 1;
  padding-top: 15px;
}

.service-card__benefits ul {
  list-style: none;
}

.service-card__benefits li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.service-card__benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --success-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --purple-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --danger-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --info-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.Offer-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
  transition: height 0.3s ease;
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.card-1::before {
  background: var(--primary-gradient);
}

.service-card.card-2::before {
  background: var(--success-gradient);
}

.service-card.card-3::before {
  background: var(--purple-gradient);
}

.service-card.card-4::before {
  background: var(--warning-gradient);
}

.service-card.card-5::before {
  background: var(--danger-gradient);
}

.service-card.card-6::before {
  background: var(--info-gradient);
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

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

.icon-box.primary {
  background: var(--primary-gradient);
  color: white;
}

.icon-box.success {
  background: var(--success-gradient);
  color: white;
}

.icon-box.purple {
  background: var(--purple-gradient);
  color: white;
}

.icon-box.warning {
  background: var(--warning-gradient);
  color: white;
}

.icon-box.danger {
  background: var(--danger-gradient);
  color: white;
}

.icon-box.info {
  background: var(--info-gradient);
  color: white;
}

.service-card h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #333;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.service-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.service-list li:hover {
  transform: translateX(5px);
  color: #333;
}

.service-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
}

.card-1 .service-list li i {
  color: #667eea;
}

.card-2 .service-list li i {
  color: #f093fb;
}

.card-3 .service-list li i {
  color: #4facfe;
}

.card-4 .service-list li i {
  color: #43e97b;
}

.card-5 .service-list li i {
  color: #fa709a;
}

.card-6 .service-list li i {
  color: #30cfd0;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.1;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-gradient);
  top: -150px;
  right: -150px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: var(--success-gradient);
  bottom: -100px;
  left: -100px;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background: var(--purple-gradient);
  bottom: 30%;
  right: 10%;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }
}

/* Animation for cards appearing */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
