.service-card {
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.9),
        rgba(40, 20, 60, 0.5)
    );
    border: 1px solid rgba(209, 106, 255, 0.2);
    border-radius: 16px;
    padding: 50px 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
	height:750px;
}

/* Top hover line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        #d16aff,
        #7b2cbf
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    border-color: #d16aff;
    box-shadow: 0 10px 40px rgba(209, 106, 255, 0.3);
}

/* Icon */
.service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
}

/* Title */
.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Description */
.service-card p {
    color: #cfcfcf !important;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* List */
.service-card ul {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-card li {
    padding: 10px 0;
    color: #cfcfcf;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d16aff;
    font-weight: bold;
}

/* Link Button */
.service-card .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d16aff;
    text-decoration: none;
    font-family: 'Michroma', sans-serif;
    font-size: 12px;
    margin-top: 20px;
    transition: gap 0.3s ease;
	text-decoration:none !important;
}

.service-card .btn-link:hover {
    gap: 12px;
}

.industry-card {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
height:250px;
}

.industry-card:hover {
  border-color: #7c3aed; /* purple */
  transform: translateY(-5px);
  background: rgba(40, 20, 60, 0.3);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.industry-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
}

.industry-card p {
  color: #b3b3b3;
  font-size: 14px;
  line-height: 1.6;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-box {
    padding: 40px 30px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid #2f2f2f;
    border-radius: 12px;
    transition: all 0.3s ease;
	height:220px;
}

.feature-box:hover {
    border-color: #7c3aed; /* purple */
    background: rgba(40, 20, 60, 0.3);
}

.feature-box h4 {
    color: #7c3aed; /* purple */
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.7;
}
/* Services List */
.services-list {
    margin-top: 60px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #2f2f2f;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    padding-left: 20px;
}

.service-item-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.service-number {
    font-family: 'Michroma', sans-serif;
    font-size: 16px;
    color: #7c3aed; /* purple */
}

.service-name {
    font-family: 'Michroma', sans-serif;
    font-size: 19px;
    color: #ffffff;
}

@media (max-width: 575px) {
.service-name {
    font-family: 'Michroma', sans-serif;
    font-size: 15px;
    color: #ffffff;
	}
	 .service-number {
        font-size: 10px;   /* adjust as needed */
        color: #1e73ff;    /* blue (change if needed) */
    }
.service-arrow {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    border: 1px solid #2f2f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

}
.service-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #2f2f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    background: #7c3aed;
    border-color: #7c3aed;
    transform: rotate(45deg);
}
.cta-section {
            background: linear-gradient(135deg, rgba(209, 106, 255, 0.1), rgba(168, 20, 231, 0.1));
            border-radius: 18px;
            padding: 100px 60px;
            text-align: center;
            margin: 100px 0;
        }

        .cta-section h2 {
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            color: var(--gray-light);
            margin-bottom: 40px;
        }
.btn-primary {
    padding: 18px 40px;
    background: #7c3aed;
    color: #ffffff !important;
    border: none;
    border-radius: 30px;
    font-family: 'Michroma', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #5b21b6;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-family: 'Michroma', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

/* Kill underline from theme */
.btn-primary,
.btn-secondary {
    text-decoration: none !important;
}
/* Fixed Header for Astra Free */
/* Fixed Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: black!important; /* required */
   
}

/* Push page content down */
.site-content {
    padding-top: 30px; /* adjust based on header height */
}
.main-header-bar {
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: black!important;
}
.site-content {
    padding-top: 30px;
}
/*contactform*/
/* Row layout */
.cf7-row {
  display: flex;
  gap: 16px;
  margin-bottom: -16px !important;
}

/* 2 columns */
.cf7-col {
  flex: 1;
}

/* Labels */
.cf7-col label {
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

/* Small inputs */
.cf7-input {
  width: 100%;
  height: 40px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Small textarea */
.cf7-textarea {
  width: 100%;
  min-height: 40px;
  height: 40px;
  resize: vertical;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Submit button */
.cf7-submit {
  padding: 10px 30px;
  font-size: 13px;
  border-radius: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .cf7-row {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .mlets {
    display: inline-block;
    text-align: center;
  }

  .mlets-parent {
    text-align: center;
  }
p.mbaln {
 margin-left: 16px !important;
}
}
/*mobilewidth*/
 @media (max-width: 575px) {
  .hero-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.section-label::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #6f42c1; /* purple color */
  display: inline-block;
 margin-right: 5px;
}
/*services continues*/
.wp-block-cover.hidden-cover {
  display: none;
}

.wp-block-cover.hidden-cover.active {
  display: block;
}
/*pcolor*/
.industry-card p {
  color: #6b7280 !important; /* light gray */
  font-size: 14px;
  line-height: 1.6;
}
.feature-box h4 {
  color: #d16aff !important; /* purple */
  font-size: 20px;
  margin-bottom: 15px;
font-family: 'Michroma', sans-serif;
	
}
.wpcf7-response-output {
    color: #000 !important;
}
/*contactfooter*/
.contact-icon i.fa-whatsapp {
  color: #fff; /* WhatsApp green */
  font-size: 25px;
}
.contact-icon {
  color: #fff !important;
  font-size: 18px;
}
.contact-info p {
  margin: 6px 0;   /* reduce vertical gap */
  display: flex;
  align-items: center;
  color: #fff !important;
}
.contact-info p a{
	color:#fff;
	
}
.contact-info p a:hover {
  color: #d16aff !important;
}
.contact-icon {
  margin-right: 8px;
}
/* Mobile */
@media (max-width: 768px) {
  .contact-info {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }
}

/*responsivemenu*/
@media (max-width: 921px) {
    #ast-hf-mobile-menu a.popup-trigger {
        color: #1e73ff !important; /* blue */
    }
}
/* Mobile phones only */
@media screen and (max-width: 575px) {
  select.wpcf7-select.cf7-input {
    font-size: 10px !important;
    padding: 6px 8px;
  }

  select.wpcf7-select.cf7-input option {
    font-size: 10p !important;
  }
}