body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Logo */
.logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

/* Slogan text */
.slogan {
  font-size: 1.0rem;
  font-weight: bold;
  color: #d32f2f;    /* red shade for emphasis */
  margin: 0.5rem 0 1rem 0;
  font-family: "Noto Sans Devanagari", sans-serif;  /* good for Hindi text */
}

/* Hero section */
.hero {
  background-color: #f5f5f5;
  text-align: center;
  padding: 2rem 1rem;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 1rem 0;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Banner + Description layout with background */
.hero-content {
  display: flex;
  flex-wrap: wrap;  /* responsive */
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;

  background: #e9f2fb;   /* 🔹 light blue-gray background */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Left: Banner (30%) */
.hero-left {
  flex: 0 0 30%;
  text-align: center;
}

.hero-banner {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  max-width: 250px; /* keeps banner from being too large */
}

/* Right: Description (70%) */
.hero-right {
  flex: 0 0 70%;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
  max-width: 800px;
}

.hero-right strong {
  color: #007bff; /* highlight name */
}

/* Contact Section */
/* Contact Section */
.contact {
  padding: 3rem 1rem;
  text-align: center;
  color: #333;

  background: #f9f9f9;  /* light gray background */
  margin: 2rem auto;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #007bff;
}

.contact ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact ul li {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  gap: 10px;
}

.contact a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.contact a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Circle Icon Style */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f2fb;       /* blue circle */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.icon {
  width: 24px;
  height: 24px;
  }

/* Footer */
footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 1rem;
  position: relative;
}

/* Cookie Banner */
.cookie-banner {
  background: rgba(0,0,0,0.85);
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
}

.cookie-button {
  background: #28a745;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  cursor: pointer;
}

.cookie-button:hover {
  background: #218838;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-right {
    text-align: center;
    flex: 0 0 100%;
  }
  .hero-left {
    flex: 0 0 100%;
  }
}
