:root {
  --primary: #4e4bff;
  --blueMid: #8a7aff;
  --light: #f5f6ff;
}

/*hero section*/
.hero-section {
    padding: 80px 0 16px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../img/b3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 60vh;
    animation: heroZoom 15s ease-in-out infinite alternate;
}
/* Title */
.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: 42px;
}

/* Paragraph */
.hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin: 10px auto 25px;
}

/* Button */
.hero-btn {
  background: #fff;
  color: #4b3df2;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}


/* Why Us ? */
.why-img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* list style */
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.why-list li {
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
}

.why-list i {
  color: #4b3df2;
  font-size: 18px;
}


/* Footer Styles */
.footer-section {
  background: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #4e4bff;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #444;
}

.footer-contact i {
  color: #000000;
  margin-right: 6px;
}

.newsletter-box input {
  border-radius: 8px;
}

.newsletter-box button {
  border-radius: 8px;
}

.social-icons i {
  font-size: 18px;
  cursor: pointer;
  color: #000;
}

.social-icons i:hover {
  color: #4e4bff;
}
.logo {
  color: var(--blueMid) !important;
}
