body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.navbar {
  background: #111;
  color: #fff;
  padding: 12px 0;
}
.navbar .logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  background: url('images/image11.jpeg') no-repeat center/cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
.btn {
display: inline-block;
  padding: 12px 25px;
  background: #ff4d4d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;

}
.bg-light { background: #f9f9f9; }
.section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 15px;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.policies {
  list-style: disc;
  max-width: 600px;
  margin: auto;
  padding-left: 20px;
  font-size: 16px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}
.form input, .form select, .form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
/* Slider */
.slider {
  max-width: 800px;   /* slider की चौड़ाई fix */
  height: 600px;      /* slider की ऊँचाई fix */
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  width: 300%;
  animation: slide 12s infinite;
  height: 100%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;   /* image को crop करके fit करेगा */
}

@keyframes slide {
  0% { margin-left: 0; }
  30% { margin-left: 0; }
  33% { margin-left: -100%; }
  63% { margin-left: -100%; }
  66% { margin-left: -200%; }
  96% { margin-left: -200%; }
  100% { margin-left: 0; }
}
/* Reset margin & padding for consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar fix */
.navbar {
  width: 100%;
  background: #222;
  color: white;
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: space-between;
  padding: 15px 30px;   /* same padding everywhere */
  position: sticky;     /* always stay on top */
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar button {
  margin-left: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #444;
  color: #fff;
}
.btn-wrapper {
  text-align: center;
  margin-top: 20px;
}


