﻿.custom-hero {
  background : linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 0;
}

.custom-hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.custom-hero .tagline {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: .95;
  color: #fff;
}

.custom-hero .experience-badge {
  background: rgba(255,255,255,.2);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 10px;
}

.content-wrapper{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);  
  border-top: 4px solid #6a39b7;
}

.feature-box h3 {
  color: #6a39b7;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.feature-box p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.service-card {
  background: white;
  padding: 30px;
  border: 1px solid #eee; 
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  margin-bottom: 30px;
}

.service-card h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.service-card ul {
  margin: 20px 0;
}

.service-card li {
  padding: 10px 0;
  color: #555;
}

.cta-primary {
  background: #6a39b7;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: inline-block;
  transition: background .2s;
  border: none;
  cursor: pointer;
}

.cta-primary:hover {
  background: #4caf50;
  color: #fff;
}

.cta-secondary {
  background: transparent;
  color: #6a39b7;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border: 2px solid #6a39b7;
  display: inline-block;
  transition: all .2s;
}

.cta-secondary:hover {
  background: #6a39b7;
  color: white;
}

.highlight-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.highlight-box h3 {
  color: #856404;
  margin-bottom: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.process-step {
  text-align: center;
  padding: 20px;
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: #6a39b7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 15px;
}

.process-step h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.process-step p {
  color: #555;
  font-size: .95em;
}

@media (max-width: 968px) {
  .feature-boxes {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .custom-hero h1 {
    font-size: 2em;
  }

  .custom-hero .tagline {
    font-size: 1.1em;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .custom-hero {
    background : linear-gradient(to bottom, #6a39b7 0%, #9b3d99 100%);

  }
}
