* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 120px;
  background-color: #1565C0;
}

nav h5 {
  width: 22%;
  height: 60px;
  margin-top: 30px;
  float: left;
  text-align: center;
  color: white;
  font-size: 16.5px;
}

ul {
  display: flex;
  list-style: none;
}

ul li {
  font-size: 18px;
  margin-left: 50px;
}

li:hover {
  background-color: #E3F2FD;
  color: #0D47A1;
  cursor: pointer;
}

a {
  color: black;
  text-decoration: none;
}

p {
  text-align: center;
  margin-top: 12px;
}

.paypal-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 20px;
}

.one {
  width: 100%;
  height: 625px;
}

.carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 2s ease-in-out;
}

.carousel-image.active {
  position: relative;
}

.two {
  width: 100%;
  height: 360px;
}

.twoSection {
  width: 32%;
  margin: 24px 0 0 1%;
  height: 88%;
  float: left;
}

.twoSection:hover {
  opacity: 0.8;
  cursor: pointer;
}

.twoSection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.twoSection h4 {
  text-align: center;
  width: 185px;
  padding: 23px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 26px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: black;
  position: relative;
  bottom: 192.5px;
}

.three-container {
  width: 100%;
  background-color: #f0f6fb;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.three {
  width: 85%;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.12);
  font-family: 'Catamaran', sans-serif;
  line-height: 1.7;
  color: #3d2e1e;
  text-align: center;
  transition: all 0.3s ease;
}

.three:hover {
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.18);
  transform: translateY(-4px);
  background-color: #f7fbff;
}

.three h2,
.three h3,
.three h4 {
  color: #1c3d70;
  margin-bottom: 20px;
  font-weight: 700;
}

.three h2 {
  font-size: 32px;
}

.three h3 {
  font-size: 26px;
  margin-top: 40px;
}

.three h4 {
  font-size: 22px;
  margin-top: 30px;
}

.three p {
  margin-bottom: 18px;
  font-size: 16px;
  color: #4e3a28;
}

/* ✅ Contact Section */
#four {
  background: #2c74c0;
  padding: 215px 20px;
  color: white;
}

#four h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
}

/* ✅ Contact Section - Improved Styling */
#four {
  background: #e3f2fd; /* Lighter blue background */
  padding: 215px 20px;
  color: #0d47a1;
}

#four h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1565c0;
}

.contact-form {
  max-width: 650px;
  margin: auto;
  text-align: left;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  background-color: #1565c0;
  border: none;
  padding: 14px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #0d47a1;
  transform: translateY(-1px);
}


/* ✅ Footer */
.socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 60px;
  background-color: black;
  color: white;
  min-height: 300px;
}

.footer-left p {
  margin: 10px 0;
  font-size: 20px;
}

.footer-left a {
  color: white;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right img {
  width: 60px;
  margin-left: 20px;
}

.footer-right a:hover img {
  opacity: 0.8;
  cursor: pointer;
}

.four {
  width: 100%;
  height: 480px;
  background-color: whitesmoke;
  overflow: hidden;
}

.fourSection {
  width: 25%;
  height: 100%;
  float: left;
}

/* ✅ About Page Image Section */
.about-image-section {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.about-bottom-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ✅ Mobile Styles */
@media screen and (max-width: 767px) {
  .three h2 {
    font-size: 14px;
  }

  .three p {
    font-size: 8px;
  }

  .three h3 {
    font-size: 10px;
  }

  .three {
    width: 100%;
    margin: 0;
  }

  .socials {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .footer-left p {
    font-size: 18px;
  }

  .footer-right {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .footer-right img {
    width: 50px;
    margin: 0;
  }
}
