.about-section {
  width: 100%;
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
  background: #050505;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}

.about-content {
  max-width: 580px;
 
}

.about-content .tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0 20px;
  color: white;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: white;
  margin-bottom: 30px;
}

.btn-primary {
  background: #6c41ff;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #5a36d1;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    max-width: 100%;
  }
}
.service-plans {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 45px;
}

.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.plan-box {
  background: #eef1f6;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s ease;
}

.plan-box:hover {
  box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.plan-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1b1b1b;
}

.plan-box ul {
  list-style: none;
  padding: 0;
}

.plan-box ul li {
  font-size: 15px;
  padding: 8px 0;
  color: #333;
  position: relative;
  padding-left: 28px;
}

.plan-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1bb76e;
  font-size: 16px;
  font-weight: bold;
}

.highlight {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
}
.plan-button{
    margin-top:25px; text-align:center; width:100%;
}
.plan-button a{
    background:#007aff; 
            color:#fff; 
            padding:12px 22px; 
            border-radius:8px; 
            text-decoration:none; 
            font-size:17px; 
            font-weight:600; 
            display:inline-block;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .plans-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .plans-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-title {
    font-size: 28px;
  }
}


.why-choose {
    font-family: 'Inter', sans-serif;
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: #fff;
    padding: 22px 18px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    transition: .3s ease-in-out;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.09);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #007aff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 15px;
    color: #333;
}

.tagline {
    font-size: 18px;
    font-weight: 600;
    color: #e63946;
    margin-top: 25px;
}

.sub-heading {
    font-size: 24px;
    margin-top: 40px;
    color: #111;
}   

.process-list {
    max-width: 600px;
    margin: 15px auto 10px;
    text-align: left;
    color: black;
}

.process-list li {
    font-size: 17px;
    background: #f7f9fc;
    padding: 12px 16px;
    border-radius: 10px;
    margin: 10px 0;
    border-left: 4px solid #007aff;
    color: #000000;
}

.footer-note {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 500;
    color: #222;
}
