* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background: #FEFDFF;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* NAVBAR */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* LOGO WRAPPER */
.logo-wrap {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */
.logoimg {
  height: 45px;
  margin-right: 10px;
}

/* LOGO TEXT */
.logo {
  color: #7B2CBF;
  font-weight: bold;
  font-size: 20px;
}
.brand {
  color: #7B2CBF; /* logo color */
}

.digital {
  color: #000; /* black */
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #00a8a8;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #FEFDFF);
  color: white;
  text-align: center;
  padding: 140px 20px;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  animation: fadeUp 1s ease;
}

.hero p {
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  color: #5A189A;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #f1f1f1;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #007f7f;
}

/* ABOUT SECTION WITH BACKGROUND IMAGE */

.about {
  position: relative;
  background: url("abtbg2.png") no-repeat center center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* Content alignment */
.about-content {
  display: flex;
  justify-content: flex-start;
}

/* Left text styling */
.about-text {
  max-width: 600px;
}

.about h2 {
  font-size: 2.2rem;
  font-weight: bold;
}

.weare {
  color: #5A189A;
  letter-spacing: 1px;
}

.about-text p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.7;
}
/* SERVICES */
.services {
  padding: 70px 0;
  background: #FEFDFF;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* WHY SECTION */
.why {
  padding: 70px 0;
  text-align: center;
}

.why ul {
  list-style: none;
  margin: 20px 0;
}

.why li {
  margin: 12px 0;
  font-size: 16px;
}

.why-text {
  margin-top: 15px;
  font-weight: 500;
}

/* CTA */
.cta {
  background: #5A189A;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.cta p {
  margin: 15px 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #111;
  color: #ccc;
}

footer h3 {
  color: white;
}

footer p {
  margin: 5px 0;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  nav {
    display: none; /* simple mobile fix */
  }

  .hero {
    padding: 100px 15px;
  }
}