* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8fafc;
  color: #333;
}
html[lang="mr"] h1,
html[lang="mr"] h2,
html[lang="mr"] h3,
html[lang="mr"] p,
html[lang="mr"] span,
html[lang="mr"] li,
html[lang="mr"] a,
html[lang="mr"] input,
html[lang="mr"] textarea,
html[lang="mr"] button {
  font-family: 'Noto Sans Devanagari', sans-serif !important;
}

/* Header */
header {
  background-color: #e3f2fd;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.logo img {
  width: 120px;
}

.menu-toggle {
  font-size: 30px;
  color: #0277bd;
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #0277bd;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover, nav a.active {
  color: #01579b;
}

.close-btn {
  display: none;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e3f2fd, #fce4ec);
}

.hero h1 {
  font-size: 3rem;
  color: #01579b;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.4rem;
  color: #555;
}

/* Form Section */
.appointment-form {
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
  margin-bottom: 30px;
  color: #0277bd;
  text-align: center;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline-color: #0277bd;
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: #0277bd;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

button[type="submit"]:hover {
  background: #01579b;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background-color: #e3f2fd;
  color: #01579b;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #e3f2fd;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    padding: 60px 20px;
  }

  nav.show {
    transform: translateX(0);
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #0277bd;
  }
}
/* Reset + Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #e3f2fd;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
  width: 120px;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #0277bd;
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #0277bd;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover, nav a.active {
  color: #01579b;
}

nav select {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #0277bd;
  background: white;
  color: #0277bd;
}

.close-btn {
  display: none;
  font-size: 30px;
  color: #0277bd;
  text-align: right;
  cursor: pointer;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 10%;
  }

  nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 60%;
    width: 250px;
    background-color: #e3f2fd;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    transform: translateX(100%);
    margin-top: 90px;
    transition: transform 0.3s ease;
    z-index: 100;
  }

  nav.show {
    transform: translateX(0);
  }

  .close-btn {
    display: block;
    align-self: flex-end;
  }

  nav select {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 70px;
  }
}

/* Reset + Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #e3f2fd;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
  width: 120px;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #0277bd;
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #0277bd;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover, nav a.active {
  color: #01579b;
}

nav select {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #0277bd;
  background: white;
  color: #0277bd;
}

.close-btn {
  display: none;
  font-size: 30px;
  color: #0277bd;
  text-align: right;
  cursor: pointer;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 10%;
  }

  nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 60%;
    width: 250px;
    background-color: #e3f2fd;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    transform: translateX(100%);
    margin-top: 90px;
    transition: transform 0.3s ease;
    z-index: 100;
  }

  nav.show {
    transform: translateX(0);
  }

  .close-btn {
    display: block;
    align-self: flex-end;
  }

  nav select {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 70px;
  }
}


.footer {
  background-color: #0d0d0d;
  color: #fff;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  text-align: center;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.footer-line {
  width: 30px;
  height: 3px;
  background-color: #00cfe8;
  margin: 10px auto 20px auto;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin: 8px 0;
}

.footer-column p {
  margin: 8px 0;
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }
}
