body{
	
	background-color:gray;
}

	

.banner{
	top:0px;
	height:500px;
    background-image:url('IMG-20220926-WA00052.jpg');
}

 .main-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 40px;
      background-color: #f5f5f5;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .main-header img {
      height: 40px;
      margin-right: 10px;
    }

    .main-header span {
      font-size: 20px;
      font-weight: bold;
      color: #333;
    }

    .left-header {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .center-nav {
      flex-grow: 1;
      text-align: center;
    }

    .center-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: inline-flex;
      gap: 30px;
    }

    .center-nav li {
      padding: 8px 16px;
      border: 1px solid transparent;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .center-nav li:hover {
      border-color: #007bff;
      background-color: #e6f0ff;
    }

    .center-nav a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
    }

    .right-icons {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .right-icons i {
      font-size: 20px;
      color: #007bff;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .right-icons i:hover {
      color: #0056b3;
    }
	
	
	
	/* Banner Styling */
.banner-section {
  background-image: url('IMG-20220926-WA00052.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  z-index: 1;
}

.tagline {
  position: relative;
  z-index: 2;
  font-size: 32px;
  font-weight: bold;
  max-width: 80%;
  line-height: 1.4;
}

.second-section{
	height: 400px;
	padding: 50px;
	background-color:white
	
}

.unique{
	display:flex	
}

.mission{
	
   width:25%;
   padding:30px;
   background-color:blue;
   height:300px;
}

.vision{
	
   width:25%;
   padding:30px;
   background-color:#76abd1;
   height:300px;
   margin-top:15px
}

.better{
	
   width:25%;
   padding:30px;
   background-color:blue;
   height:300px;
}

















/* General layout for the about page */
.about-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fdfdfd;
}

/* Section styling */
.about-container section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-left: 5px solid #0b6bff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* Section headings */
.about-container h2 {
  font-size: 1.8em;
  color: #0b6bff;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 5px;
}

/* Paragraphs */
.about-container p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* List styling */
.about-container ul {
  padding-left: 20px;
  margin-top: 10px;
}

.about-container ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  list-style-type: disc;
}

/* Contact links */
.about-container a {
  color: #0b6bff;
  text-decoration: none;
}

.about-container a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-container {
    padding: 15px;
  }

  .about-container h2 {
    font-size: 1.5em;
  }

  .about-container ul li,
  .about-container p {
    font-size: 0.95rem;
  }
}

















/* ===== Contact Page Styles ===== */
.about-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fdfdfd;
}

/* Section box styling */
.about-container section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-left: 5px solid #0b6bff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* Headings */
.about-container h2 {
  font-size: 1.8em;
  color: #0b6bff;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 5px;
}

/* Paragraph and link styling */
.about-container p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.about-container a {
  color: #0b6bff;
  text-decoration: none;
}

.about-container a:hover {
  text-decoration: underline;
}

/* List styles */
.about-container ul {
  padding-left: 20px;
  margin-top: 10px;
}

.about-container ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  list-style-type: disc;
}

/* ===== Contact Form Styles ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #0b6bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #084bcc;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-container {
    padding: 15px;
  }

  .about-container h2 {
    font-size: 1.5em;
  }

  .about-container ul li,
  .about-container p,
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }
}
