/* Basic Reset */
* {
  padding: 0;
  box-sizing: border-box;
  font-family: "Public Sans", sans-serif;
  text-align: center;
}

body {
  font-family: "Public Sans", sans-serif;
  background: rgb(205, 205, 205);
  background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  padding: 20px;
}

header {
  padding: 20px 0;
  text-align: center;
  margin-bottom: -2%;
}

.image-container {
  width: 100%;
}

.logo {
  width: auto;
}

.logo img {
  width: 870px;
  height: auto;
}

.partners,
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

h1,
h2 {
  text-align: center;
  margin-bottom: 19px;
}

.companies-table {
  width: 100%;
  border-collapse: collapse;
}

.companies-table td {
  width: 33.33%;
  padding: 20px;
  text-align: center;
  vertical-align: top;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
  background-color: black;
  text-align: center;
  color: white;
  padding: 2%;
}

/* Navigation Menu Styles */
#myMenu {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  transition: height 0.5s ease-out;
  padding: -7px;
  font-size: 20px;
}

#myMenu a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: height 0.5s ease-out;
  margin: 0 5px;
}

#myMenu.shrunk {
  height: 70px;
  transition: 0.3s ease-in;
}

#myMenu a:hover {
  color: rgb(255, 255, 255);
  transition: 0.4s ease-in;
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* Active Link Style */
#myMenu a.active {
  background-color: #2e3394;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  color: rgb(255, 255, 255);
  border-radius: 100px;
}

/* Ensure full height sections for fullPage.js */
.section {
  height: 100vh;
}

/* About Us section styles */
#about-us {
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}

.reviews-container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  font-size: 20px;
}

.review {
  padding: 15px;
  font-size: 22px;
  border-radius: 8px;
}

.stars {
  color: #f5c542; /* Gold color for stars */
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: bold;
  margin-top: 10px;
}

/* Contact Page Styles */

.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 7%;
}

.contact-form {
  width: 48%; /* Roughly half the container width minus some for spacing */
  padding: 5%;
  background: #ece9e6; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #ece9e6
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #ece9e6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.contact-details {
  width: 40%;
  font-size: 27px;
  padding: 20px;
}

.contact-form h2,
.contact-details h2 {
  margin-bottom: 20px;
}

.contact-form h1,
.contact-details h1 {
  font-size: 30px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  font-size: 20px;
}

textarea {
  height: 150px;
  resize: vertical; /* Allow vertical resizing */
}

button {
  border-radius: 4px;
  background-color: #000000;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding: 14px;
  width: 270px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.7);
}

button {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button:after {
  content: "»";
  position: absolute;
  opacity: 0;
  font-size: 30px;
  top: 9px;
  right: -20px;
  transition: 0.5s;
}

button:hover {
  padding-right: 24px;
  padding-left: 8px;
  background-color: #2e3394;
}

button:hover:after {
  opacity: 1;
  right: 10px;
}

.contact-info {
  margin: 5%;
  text-align: left;
  font-weight: bold;
}

.contactinfo {
  text-align: left;
  font-size: 22px;
}

.contactustitle {
  font-size: 27px;
  font-weight: bolder;
}

.aboutinfo {
  font-size: 29px;
}

.abouttitle {
  font-size: 29px;
}

.whatdo {
  font-size: 20px;
  margin-top: 150px;
}

/* Graphics Container Styles */
.graphics-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.left-graphic,
.right-graphic {
  position: absolute;
  top: 0;
  bottom: 0;
}

.left-graphic {
  left: -16%;
  position: absolute;
  top: 30%;
}

.right-graphic {
  right: -16%;
  top: 30%;
  position: absolute;
}

.left-graphic img,
.right-graphic img {
  height: 600px;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 750px;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: -1;
}

.messageus p {
  font-size: 40px;
  margin: 10px;
}
