body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  line-height: 1.6;
  background-image: url(images/backgrnd7.jpg);
}

header {
  background-color: transparent; /* Make the header transparent */
  color: #fff;
  padding: 20px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 28px;
}

nav {
  position: absolute;
  top: 36px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent light background */
  padding: 10px;
  border-bottom: none; /* Remove the bottom border */
  border-radius: 10px; /* Add rounded corners */
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.5); /* Add a semi-transparent background color */
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.8); /* Adjust the transparency on hover */
  background-color: magenta; /* Change the background color on hover */
  color: white; /* Change the text color to white on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow effect on hover */
}

}



/* ...existing styles... */





nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
   background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
}

nav ul li {
  position: relative;
}

nav ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 155%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 200px; /* Adjust the width as needed */
}

nav ul li:hover > ul.dropdown {
  display: block;
}

nav ul li ul.dropdown li {
  display: block;
  margin-right: 0;
}

nav ul li ul.dropdown li a {
  display: block;
  padding: 5px;
  font-size: 14px; /* Adjust the font size as desired */
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li ul.dropdown li a:hover {
  background-color: magenta; /* Change the background color on hover */
  color: white; /* Change the text color to white on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow effect on hover */
}


section {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(rgba(0, 0, 255, 0.5), rgba(0, 0, 255, 0.2)), url(images/background.jpg);
  background-blend-mode: overlay;
  color: #fff;
}
h2 {
  margin-top: 0;
  font-size: 24px;
}

p {
  margin-bottom: 15px;
}



/* ...existing styles... */

.header-container {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 10px;
}

.logo {
  margin-right: 10px;
  width: 125px; /* Adjust the width as needed */
  height: 120px; /* Set the height to the same value as the width */
  border-radius: 20px; /* Use a smaller value to create a more rounded shape */
  object-fit: cover; /* Maintain aspect ratio */
}


.contact-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.contact-info {
  flex: 1;
  padding: 12px;
  margin-right: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  max-height: 300px;
  overflow-y: auto;
}

.contact-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

.contact-info .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.contact-info a {
  color: #555;
  text-decoration: none;
}

.contact-info a:hover {
  color: #4CAF50;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 12px;
}




.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: whitesmoke;
  padding: 20px;
}

.contact-form h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px; /* Increased margin-bottom value */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  color: #555;
}

.contact-form textarea {
  height: 80px;
}

.contact-form input[type="checkbox"] {
  margin-top: 8px;
  margin-right: 5px;
}

.contact-form label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  color: #777;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}

.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 10px;
  color: #333;
}

.contact-form button[type="submit"]:hover {
  background-color: #45a049;
  transition: background-color 0.3s ease;
}

/* Additional styles for form responsiveness */
@media (max-width: 768px) {
  .contact-form {
    padding: 10px;
  }
}
.form-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.form-group label {
  margin-right: 15px;
}

button[type="submit"] {
  display: block;
  margin: 0 auto;
  background-color: #4CAF50;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

/*FOOTER*/
@font-face {
  font-family: "SpecialFont";
  src: url("path/to/font.woff2") format("woff2"),
       url("path/to/font.woff") format("woff");
  /* Add additional font formats if necessary */
}

footer {
  padding: 20px;
  background-color: ghostwhite;
  color: #333;
  text-align: center;
  font-family: "SpecialFont", Arial, sans-serif;
}

.corner-info {
  display: flex;
  align-items: center;
}

.corner-info img {
  width: 65px;
  height: 65px;
  margin-right: 5px;
  border-radius: 50%;
}

.corner-info p {
  margin: 0;
}
.info-text {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: royalblue;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: dodgerblue;
}

p {
  margin-bottom: 10px;
}

a {
  color: #333;
}

a:hover {
  text-decoration: underline;
}