/* Template CSS */

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Header Styles */
.header-area {
  background-color: #616870;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.header-area .logo {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0; /* Add padding to create spacing */
}

.header-area .main-nav .nav {
  list-style: none;
  margin: 0;
  padding: 80px 0 0; /* Add top padding to create spacing below the title */
  display: flex;
  align-items: center;
}

.header-area .main-nav .nav li {
  margin-left: 20px;
}

.header-area .main-nav .nav li a {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.header-area .main-nav .nav li a:hover {
  color: #007bff;
}


.main-button a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.main-button a:hover {
  background-color: #0056b3;
}



/* Banner Styles */
.main-banner {
  background-color: #4F5760;
  padding: 100px 0;
  text-align: center;
  margin-top: 60px;
}

.header-text h6 {
  font-size: 28px;
  font-weight: 600;
  color: #F6B737;
}

.header-text h2 {
  font-size: 58px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Services Styles */
.section {
  padding: 100px 0;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-heading {
  text-align: left;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.section-heading p {
  font-size: 18px;
  color: #666;
}

.features-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.left-icon img {
  width: 60px;
  margin-right: 20px;
}

.right-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.right-content p {
  font-size: 16px;
  color: #666;
}

/* Call to Action Styles */
.cta-content {
  padding: 100px 0;
  background-color: #4F5760;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 40px;
}

/* Schedule Styles */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.schedule-table th,
.schedule-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.schedule-table th {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
}

/* Contact Us Styles */
.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Privacy Policy and Terms of Service Styles */
.tabs-content {
  margin-top: 40px;
  text-align: left;
}

.tabs-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.tabs-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}