* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.navbar {
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px #0A0A0A1F;
  color: rgba(0, 0, 0, 1);

}

.nav-link:hover {
  color: #7506B1;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  padding: 80px 0;
  background-color: #fff;
}

.hero-text h1,
.highlight,
.text-dark,
.ga {
  font-size: 40px;
  font-weight: 700;
}

.highlight {
  color: rgba(192, 140, 219, 1);
}

.subtext {
  font-size: 18px;
  color: #474748;
  margin-bottom: 30px;
}

.btn1 {
  background-color: rgba(117, 6, 177, 1);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.hero-images img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

.about-section {
  background: #f1e6f7;
  padding: 80px 5%;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.about-image {
  flex: 1 1 300px;
  display: flex;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  justify-content: center;
}

.image-shadow-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-bottom-right-radius: 270px;
  overflow: hidden;
  box-shadow: 20px 30px 40px rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 1 1 300px;
}

.tag {
  display: inline-block;
  background-color: rgba(83, 4, 126, 1);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ab p {
  background: rgba(71, 71, 72, 1);
}

.about-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Custom Colors */
.bg-purple {
  background-color: #6a1b9a;
  color: white;
}

.text-purple {
  color: #6a1b9a;
}

.about-section {
  background-color: #f4e9fb; /* light lavender */
}

.info-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  display: flex;
  align-items: start;
  gap: 10px;
}

/* Optional: Image Styling */
.rounded-image img {
  border-radius: 300px 0 0 300px;
  object-fit: cover;
}
/* Custom Colors */
.bg-purple {
  background-color: #6a1b9a;
  color: white;
}

.text-purple {
  color: #6a1b9a;
}

.about-section {
  background-color: #f4e9fb; /* light lavender */
}

.info-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  display: flex;
  align-items: start;
  gap: 10px;
}

/* Optional: Image Styling */
.rounded-image img {
  border-radius: 300px 0 0 300px;
  object-fit: cover;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.feature .icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.container,
.consult-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.services-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  height: auto;
}

.service-card h5 {
  margin: 12px 0 8px;
  text-align: left;
}

.label {
  display: block;
  background: rgba(241, 230, 247, 1);
  color: rgba(5, 47, 102, 1);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  margin: 10px 0 8px 0;
  text-align: left;
}

.btn-outline {
  display: inline-block;
  padding: 10px 65px;
  border: 1px solid rgba(117, 6, 177, 1);
  color: rgba(117, 6, 177, 1);
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  margin: 15px 1px 0;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #800080;
  color: white;
}

.consult-section {
  background-color: rgba(117, 6, 177, 1);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  width: 83%;
  border-radius: 24px;
  margin: 0 10% 0 9%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult-box {
  text-align: center;
  color: white;
  position: relative;
  z-index: 10;
}

.consult-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.btn-white {
  background-color: white;
  color: black;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  font-size: 1rem;
}

.btn-white:hover {
  background-color: #f0f0f0;
}

.consult-section::before,
.consult-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: 0;
}

.consult-section::before {
  left: 0;
  background-image: url('img/Brutalist 02.png');
}

.consult-section::after {
  right: 0;
  background-image: url('img/Brutalist 3.png');
  background-position: right center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-footer {
  background: rgba(243, 232, 238, 1);
  box-shadow: 0px 34.72px 76.2px 0px rgba(69, 14, 21, 0.16);
  border-top: 70px rgba(243, 232, 238, 1);
}

.bg-purple {
  background-color: #822a84;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: rgba(243, 232, 238, 1);
  z-index: 1;
  transition: transform 0.3s;
  overflow: hidden;
}

footer ul li {
  margin-bottom: 10px;
}

footer a:hover {
  color: #ffcc00;
}

footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
  .about-container,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  .about-content {
    padding: 0 10px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 20px;
    border-bottom-right-radius: 180px;
  }

  .features-grid,
  .nav-links {
    flex-direction: column;
    display: none;
    background: white;
    position: absolute;
    top: 70px;
    right: 10%;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .consult-box h2 {
    font-size: 1.4rem;
  }

  .btn-white {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .consult-section::before,
  .consult-section::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .label {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px;
  }
}
.cta-section {
  background-color:  rgba(117, 6, 177, 1);
  border-radius: 20px;
  margin: 24px 7%;
  background-image: url('img/Brutalist\ 02.png'), url('img/Brutalist 3.png');
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: auto 100%, auto 100%;
}
@media (max-width: 768px) {
  .cta-section {
    background-size: 50%, 50%;
    background-position: left center, right center;
  }
}
@media (max-width: 200px) {
  .cta-section {
    background-size: 100%, 100%;
    background-position: left center, right center;
  }
  .badge {
    font-size: 4px;
  }
}

.badge {
  font-size: 12px;
  background: rgba(83, 4, 126, 1);
  color: var(--Grays-White, rgba(255, 255, 255, 1));
  border-radius: 30px;
  margin-bottom: 30px;
}
.text {
  margin-top: -20px;
  font-size: 40px;
}
.aim1 {
  margin-top: 20px;
}