/* Reset some default styles for consistency */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #007bff;
}
.main-content {
  padding: 40px;
}

.main-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.main-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.main-content p {
  margin-bottom: 15px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-form {
  border: 1px solid #d5d5d5;
  padding: 20px;
  border-radius: 5px;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.main-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.main-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.main-content ul {
  margin-left: 20px;
  list-style-type: disc;
}

.main-content li {
  margin-bottom: 10px;
}


a:hover {
  text-decoration: underline;
}

/* Header and Navigation */
nav {
  background-color: #007bff;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav li {
  margin-right: 20px;
}

nav li:last-child {
  margin-right: 0;
}

nav a {
  color: #fff;
  padding: 10px 15px;
}

/* Slider Section */
.slider {
  display: flex;
  
 
  height: 400px;
  overflow: hidden;
  background:url(../img/banner.jpg) no-repeat;
  background-size:cover;
}

.slider h1{
color:#fff;
font-size:39px;
text-align:center;
margin-left:100px;
margin-top:100px;

	
	}


.slider img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

/* Main Content Section */
.main-content {
  padding: 40px;
}

.main-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.main-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.main-content p {
  margin-bottom: 15px;
}

.main-content ul {
  margin-left: 20px;
}

/* Footer Section */
.footer {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 10px;
}

/* Form Styles */
form {
  margin-top: 20px;
}

form input[type="text"],
form input[type="password"],
form button[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
}

form button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

/* Preloader Styles */
.preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader img {
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
