/********** Logo And Menu CSS Ends **********/
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.background-image {
    background-image: url('your_image_url.jpg'); /* Add your image URL here */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    color: white;
    padding: 20px;
}

.white-line {
    width: 50%;
    border: 1px solid white;
}

.section2 {
    padding: 50px 0;
}

.white-background {
    background-color: white;
    padding: 20px;
}

.blue-text {
    color: blue;
    text-align: center;
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.black-background {
    background-color: black;
    padding: 20px;
    margin-top: 50px;
}

.white-text {
    color: white;
    text-align: center;
}
.blue-text-2 {
    color: blue;
    text-align: center;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}
.black-text {
    color: black;
    text-align: justify;
    margin-left: 150px;
    margin-right: 150px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* For devices with a max width of 1024px */
@media (max-width: 1024px) {
  .background-image {
      height: 70vh;
  }
  .content {
      padding: 10px;
  }
  .white-line {
      width: 70%;
  }
  .blue-text {
      font-size: 40px;
  }
  .black-text {
      margin-left: 50px;
      margin-right: 50px;
  }
  .blue-text-2 {
      font-size: 14px;
  }
}

/* For devices with a max width of 768px */
@media (max-width: 768px) {
  .background-image {
      height: 60vh;
  }
  .white-line {
      width: 80%;
  }
  .blue-text {
      font-size: 35px;
  }
  .black-text {
      margin-left: 30px;
      margin-right: 30px;
      font-size: 14px;
  }
  .blue-text-2 {
      font-size: 12px;
  }
}

/* For devices with a max width of 480px */
@media (max-width: 480px) {
  .background-image {
      height: 50vh;
      margin-top: 70px;
  }
  .white-line {
      width: 90%;
  }
  .content {
      font-size: 14px;
  }
  .blue-text {
      font-size: 30px;
  }
  .black-text {
      margin-left: 20px;
      margin-right: 20px;
      font-size: 12px;
  }
  .blue-text-2 {
      font-size: 10px;
  }
}