body {
  background: linear-gradient(135deg, #2a0845 0%, #6441a5 100%);
  color: #fff;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin: 0;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(30, 20, 60, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
}
.logo {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
}

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 10%;
  gap: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 24px;
  margin: 40px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(100,65,165,0.10);
}
.text-content {
  flex: 1;
}
.subheading {
  color: #00ffe7;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.text-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin: 0 0 20px;
}
.text-content h1 span {
  color: #00ffe7;
}
.highlight-box {
  background: rgba(255,255,255,0.10);
  border-left: 4px solid #ffd700;
  padding: 12px 16px;
  font-weight: 600;
  color: #ffd700;
  margin: 20px 0;
  border-radius: 8px;
}
.text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 15px;
  opacity: 0.92;
}
.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(100,65,165,0.18);
}

.business-section {
  padding: 60px 10%;
  background: linear-gradient(145deg, #2a0845 0%, #6441a5 100%);
  color: #fff;
  text-align: center;
  border-radius: 24px;
  margin: 40px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(100,65,165,0.10);
}
.business-section .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffd700;
}
.business-section .subtitle {
  font-size: 1.1rem;
  color: #00ffe7;
  margin-bottom: 40px;
}
.business-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.business-card {
  background: rgba(255,255,255,0.13);
  color: #fff;
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.13);
  border: 1.5px solid rgba(255,255,255,0.10);
}
.business-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-content {
  padding: 16px;
  text-align: left;
}
.card-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
}
.card-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 12px;
  color: #fff;
  opacity: 0.92;
}
.visit-site {
  color: #00ffe7;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.highlight-card {
  transform: scale(1);
  z-index: 1;
  border: 2px solid #ffd700;
}
.highlight-card:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 30px rgba(0, 255, 231, 0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mission-vision-section {
  background: rgba(255,255,255,0.07);
  text-align: center;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px auto 0 auto;
  max-width: 900px;
  box-shadow: 0 8px 32px rgba(100,65,165,0.10);
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.mv-block {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.mv-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.mv-block h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 8px;
}
.underline {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #00ffe7;
  margin: 0 auto 16px;
  border-radius: 2px;
}
.mv-block p {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.92;
}

.mahadev-footer {
  background: rgba(30, 20, 60, 0.85);
  color: #fff;
  padding: 48px 0 0 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 60px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-about, .footer-links, .footer-contact {
  flex: 1 1 250px;
}
.footer-about h3 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-about p {
  color: #fff;
  opacity: 0.85;
  font-size: 1rem;
}
.footer-links h4, .footer-contact h4 {
  color: #00ffe7;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #ffd700;
}
.footer-contact p {
  color: #fff;
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 8px;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-icons a {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  padding: 8px;
  transition: background 0.2s;
}
.social-icons img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.2) brightness(1.1);
}
.social-icons a:hover {
  background: #ffd700;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0 12px 0;
  color: #fff;
  opacity: 0.7;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .about-section, .business-section {
    flex-direction: column;
    padding: 40px 4%;
    gap: 24px;
  }
  .footer-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
  }
}
