/*Index styles*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
header {
  background-color: white;
  /* color: white; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  /* gap: 300px; */
}

.logo {
  width: 200px;
  height: auto;
  margin-right: 10px;
}

/* Contact Information */
.contact-info {
  text-align: right;
  font-weight: bold;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.tooltip {
  position: relative;
  display: inline-block;
  width: 100%; /* Ensures the tooltip container spans the full width */
}

textarea {
  width: 100%; /* Ensures the textarea spans the full width of its container */
}

.tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    text-align: center;
    margin-top: 20px;
  }
}

/* Navigation Bar */
nav {
  background-color: #444;
  display: flex;
  justify-content: center;
  padding: 10px;
  position: relative;
}

nav a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 5px 0;
}

/* Main content */
.main-content {
  padding: 20px;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #f2f2f2;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
}

footer a:hover {
  color: #00bcd4;
}

.social-links {
  margin-top: 10px;
  display: none;
}

.social-links a {
  font-size: 16px;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    display: none;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #444;
    z-index: 10;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    text-align: left;
    border-top: 1px solid #333;
  }

  .hamburger {
    display: flex;
  }
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-text {
  flex-basis: 50%;
  max-width: 700px;
  text-align: left;
}

.home-text h1 {
  font-size: 42px;
  color: #005a9c;
  font-weight: 700;
  margin-bottom: 15px;
}

.home-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #005a9c;
  color: white;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #003f6b;
}

.home-image {
  flex-basis: 40%;
  max-width: 700px;
}

.home-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    text-align: center;
  }

  .home-text {
    max-width: 100%;
    text-align: center;
  }

  .home-image {
    max-width: 100%;
  }
}

/*Services*/
#services {
  padding: 50px 20px;
  text-align: center;
  background-color: white;
}

#services h2 {
  font-size: 36px;
  color: #005a9c;
  font-weight: bold;
  margin-bottom: 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services div {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.services div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

h3 {
  font-size: 20px;
  color: #333;
  margin: 15px 0 10px;
}

p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Pricing */

/* Base styles */
#pricing {
  padding: 50px 20px;
  text-align: center;
  background-color: white;
}

#pricing h2 {
  font-size: 36px;
  color: #005a9c;
  font-weight: bold;
  margin-bottom: 20px;
}

#pricing h3 {
  color: #005a9c;
  font-weight: bold;
  margin-bottom: 20px;
}

#pricing p {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
  text-align: left;
}

#pricing img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#pricing ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

#pricing ul li {
  font-size: 16px;
  color: #555;
  padding: 8px 0;
  list-style: none;
  position: relative;
}

#pricing ul li::before {
  content: "✔";
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  #pricing h2 {
    font-size: 32px;
  }

  #pricing p {
    font-size: 16px;
  }

  #pricing img {
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  #pricing {
    padding: 40px 15px;
  }

  #pricing h2 {
    font-size: 28px;
  }

  #pricing p {
    font-size: 16px;
  }

  #pricing ul li {
    font-size: 14px;
  }

  #pricing ul {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  #pricing {
    padding: 30px 10px;
  }

  #pricing h2 {
    font-size: 24px;
  }

  #pricing p {
    font-size: 14px;
  }

  #pricing ul {
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  #pricing {
    padding: 20px 10px;
  }

  #pricing h2 {
    font-size: 22px;
  }

  #pricing p {
    font-size: 14px;
  }

  #pricing img {
    margin-bottom: 10px;
  }

  #pricing ul {
    max-width: 100%;
    padding-left: 20px;
  }

  #pricing ul li {
    font-size: 12px;
  }
}

/* Vision Section */
#vision {
  text-align: center;
  padding: 80px 20px;
  background: white;
}

#vision h2 {
  color: #005a9c;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: bold;
  margin-top: 20px;
}

.vision-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-in-out;
}

.vision-image {
  width: 45%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.vision-image:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.vision-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.vision-text:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .vision-content {
    flex-direction: column;
    text-align: center;
  }

  .vision-image {
    width: 100%;
    max-width: 100%;
  }

  .vision-text {
    text-align: center;
    font-size: 1rem;
    padding: 20px;
  }
}

/* About Us Section */
.about-section {
  background-color: white;
  padding: 60px 0;
  text-align: center;
}

.about-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #005a9c;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  text-align: left;
}

.about-text {
  flex: 1;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  font-size: 18px;
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

.about-text ul li::before {
  content: "✔";
  color: #007bff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.about-image {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    width: 100%;
  }

  .about-image {
    width: 100%;
    margin-top: 20px;
  }
}

/* Contact Section */
#contact {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  text-align: center;
}

#contact h3 {
  color: #005a9c;
  font-weight: bold;
}

#contact h2 {
  color: #005a9c;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: bold;
  margin-top: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-image {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.contact-image:hover {
  transform: scale(1.05);
}

.contact-info {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  text-align: center;
}

.contact-info a {
  color: #005a9c;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.contact-info a:hover {
  color: #003f6b;
}

/* Form Styling */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.contact-form:hover {
  transform: translateY(-5px);
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

input,
textarea {
  width: 50%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-bottom: 10px;
}

input:focus,
textarea:focus {
  border-color: #005a9c;
  box-shadow: 0 0 8px rgba(0, 90, 156, 0.3);
  outline: none;
}

/* Button Styling */
.btn {
  display: block;
  width: 50%;
  background-color: #005a9c;
  color: white;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  margin: 0 auto; /* Centers the button horizontally */
}

.btn:hover {
  background-color: #003f6b;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-image {
    max-width: 100%;
  }

  .contact-info {
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }
}

/* Sitemap Section */
.sitemap {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.sitemap h2 {
  color: #005a9c;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: bold;
  margin-top: 20px;
}

.sitemap-nav {
  display: block;
  width: 100%;
  max-width: 600px; /* Limit width on large screens */
  margin: 0 auto; /* Center it horizontally */
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin: 10px 0;
}

.sitemap-list li a {
  font-size: 18px;
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.sitemap-list li a:hover {
  color: #005bb5;
}

/* Responsive Design for small screens */
@media (max-width: 768px) {
  .sitemap-nav {
    padding: 10px; /* Reduce padding for small screens */
    width: 90%; /* Use more screen width on mobile */
    max-width: none; /* Remove max-width restriction */
    margin: 0 auto; /* Ensure it's still centered */
  }

  .sitemap-list li {
    font-size: 16px; /* Make font smaller for mobile */
  }
}

/* General Privacy Policy Styles */
.privacy-policy {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  font-family: Arial, sans-serif;
  color: #333;
}

.privacy-policy h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #005a9c;
}

.privacy-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin: 0 auto 30px; /* Center the image horizontally */
  display: block; /* Makes sure it's treated as a block element */
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  color: #005a9c;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 20px;
  }

  .privacy-policy h1 {
    font-size: 28px;
  }

  .about-image {
    max-height: 300px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .policy-section p {
    font-size: 14px;
  }
}

/* Container Styling */
.terms-container {
  padding: 40px 20px;
  background: #f9f9f9;
  max-width: 900px;
  margin: 0 auto;
}

/* Title Styling */
.terms-container h2 {
  font-size: 28px;
  color: #005a9c;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.updated-date {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
}

/* Flexbox Layout */
.terms-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Image Section */
.terms-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.terms-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Text Section */
.terms-text {
  flex: 2;
  min-width: 300px;
  /* color: #005a9c; */
}

.terms-text h3 {
  font-size: 20px;
  color: #005a9c;
  margin-top: 20px;
}

.terms-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-content {
    flex-direction: column;
    text-align: center;
  }

  .terms-text,
  .terms-image {
    width: 100%;
  }
}
