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

/* Body */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  background: #866bd1;
  border-bottom: 2px solid #010b1f;
  z-index: 100;
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: #c1adf7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #2563eb;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 40px;
}

.header-text {
  margin-left: 1rem;
  flex: 1;
  min-width: 220px;
  font-weight: 900;
}

.header-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.header-text p {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 900;
}

nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
}

nav a:hover {
  color: #eb6a25;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 5rem 3rem;
  background: linear-gradient(120deg, #eff6ff, #ffffff);
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #4b5563;
}

.hero button {
  background: linear-gradient(135deg, #6a5af9, #8b7bff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(106, 90, 249, 0.3);
}

.hero button:hover {
  background: #1d4ed8;
}

/* Hero image */
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

/* Slider */
.hero1 {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Sections */
section {
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 2rem;
  background: white;
  text-align: center;
  font-weight: 600;
  color: #2563eb;
}

section button {
  background: linear-gradient(135deg, #6a5af9, #8b7bff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(106, 90, 249, 0.3);
}

section button:hover {
  background: #1d4ed8;
}

/* Footer */
footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

footer a {
  color: #9ca3af;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .hero iframe {
    width: 100%;
    height: 200px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  nav {
    margin-top: 1rem;
    width: 100%;
  }

  nav a {
    margin-left: 0;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }

  .header-text {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero-image img {
    height: 250px;
  }

  .hero1 {
    height: 40vh;
  }
  /* Simple underline for any element */
.underline {
  text-decoration: underline;
  text-decoration-color: #2563eb; /* optional color */
  text-decoration-thickness: 2px; /* optional thickness */
  text-underline-offset: 4px; /* distance from text */
}




}
