/* General Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #003366;
  padding: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

#logo {
  float: left;
  height: 100px;
  width: 170px;
  background-size: 100% 100%;
  background-image: url("Logo1.jpg");
  margin-right: 20px;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-family: "Times New Roman", Times, serif;
}

header h1 a {
  color: white;
  text-decoration: none;
  padding-right: 190px
}

header h1 a:hover {
  text-decoration: underline;
}

header h5 {
  font-style: italic;
  font-size: 1.2rem;
  margin: 10px 0 0 0;
  color: #cce6ff;
  font-weight: normal;
  padding-right: 190px
}

#nav1 {
  background-color: #0055aa;
  padding: 10px;
  text-align: center;
}

#nav1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav1 li {
  display: inline-block;
  margin: 10px;
}

#nav1 a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 10px;
}

#nav1 a:hover {
  background-color: #003366;
  text-decoration: underline;
}

#nav2 {
  position: sticky;
  top: 20px; /* Adjust this value as needed */
  align-self: flex-start;
  background-color: #eef5fa;
  padding: 15px 20px;
  border-radius: 10px;
  width: 250px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  flex: 0 0 250px;
  z-index: 100;
}

#nav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#nav2 li {
  margin: 10px 0;
  position: relative;
}

#nav2 a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

#nav2 a:hover {
  background-color: #dbefff;
  color: #cc0000;
}

#nav3 {
  margin-top: 10px;
  margin-left: 15px;
  background-color: #ffffff;
  padding: 10px 15px;
  border-left: 3px solid #003366;
  border-radius: 6px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

#nav3 ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

#nav3 li {
  margin: 6px 0;
}

#nav3 a {
  color: #333;
  font-weight: normal;
  text-decoration: none;
  font-size: 0.95rem;
}

#nav3 a:hover {
  color: #0055aa;
  text-decoration: underline;
}


#content-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}


main {
  padding: 20px;
  max-width: 1100px;
  margin: 20px auto;
  flex: 1;
}


main > section {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}


section img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 10px;
  text-align: left;
}

th {
  background-color: #003366;
  color: white;
}

td {
  background-color: #f9f9f9;
}


footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px 20px;
}

footer a {
  color: #99ccff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  #nav1 {
    padding: 10px 5px;
  }

}
h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: 25px;
}
main h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
}

video, embed {
	  float: right;
	  padding-left: 20px;
}
#Homecontent {
  font-size: 20px;
}

#Homebackground {
	height: 700px;
	background-size: 100% 100%;
	background-image: url("Homebackground.jpg");
}

.form-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 15px;
}

.form-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

/* Label and input styles */
form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

/* Resize text area only vertically */
form textarea {
  resize: vertical;
}

/* Submit button */
form input[type="submit"] {
  background-color: #003366;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
  background-color: #0055aa;
}

/* Contact Information Section */
.contact-info {
  max-width: 1200px;
  margin: 40px auto;
  background-color: #eef5fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #003366;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  color: #444;
  margin: 10px 0;
}

.contact-info a {
  color: #0055aa;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.ARC h1 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
}

.ARC p {
  font-size: 1.1rem;
  text-align: justify;
  margin-bottom: 40px;
}

/* FAQ section */
.faq {
  background-color: #f2f7fb;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq h2 {
  color: #003366;
  margin-bottom: 15px;
  font-size: 2rem;
}

.faq dt {
  font-weight: bold;
  margin-top: 20px;
  color: #004080;
}

.faq dd {
  margin-left: 20px;
  font-size: 1rem;
}

/* References section */
.reference {
  background-color: #fff;
  padding: 30px;
  border-left: 5px solid #004080;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.reference h2 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 2rem;
}

.reference p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.reference i {
  color: #333;
}

.reference a {
  color: #006699;
  text-decoration: none;
}

.reference a:hover {
  text-decoration: underline;
}

#Homecontent2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 30px;
}

.shape {
  background-color: #f0f8ff;
  border-left: 5px solid #2c3e50;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.shape:hover {
  transform: translateY(-5px);
}

.shape h2 {
  color: #2c3e50;
  margin-top: 0;
  font-size: 1.3em;
}

.shape p {
  color: #333;
  line-height: 1.5;
}

.shape h1 {
  color: #2c3e50;
  font-size: 1.3em;
  padding-top: 175px;
  text-align: center;
}

#confirmation {
  background-color: #e6f9f6;
  padding: 2rem;
  border: 1px solid #a7e1d4;
  border-radius: 8px;
  color: #02675e;
  text-align: center;
}

#confirmation h3 {
  margin-top: 0;
  font-size: 1.5rem;
}


