* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 10px = 1rem */
}
.indicator {
  margin-top: 80px;
  width: 100%;
  height: 15vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  background: linear-gradient(to right, #253898, #5737d6);
}
.indicator .navigation {
  /* border: 2px solid red; */
  padding: 10px;
  margin-left: 140px;
}
.navigation a {
  text-decoration: none;
  font-size: 2rem;
  font-family: "Fira Sans", sans-serif;
  color: #ffffff;
}
.navigation a:first-child {
  margin-right: 16px;
}
.navigation i {
  color: white;
}
.navigation a:last-child {
  margin-left: 16px;
}

/* content section */
.content {
  /* border: 2px solid red; */
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 50px 140px;
}
.formBox {
  /* border: 2px solid red; */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}
.formBox form {
  border: 2px solid green;
  padding: 30px;
  border-radius: 30px;
  width: 100%;
  height: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  align-content: center;
}
.formControl {
  display: flex;
  flex-direction: column;
  /* border: 2px solid red; */
  position: relative;
}
.formlables {
  font-size: 2rem;
  font-family: "Fira Sans", sans-serif;
  color: #758283;
  margin-bottom: 10px;
}
.inputfield {
  padding: 10px;
  border-radius: 9px;
  width: 280px;
  background: transparent;
  border: 1px solid #758283;
  outline: 0px;
  font-size: 1.8rem;
  font-family: "Fira Sans", sans-serif;
  color: var(--text-color--);
  margin-bottom: 20px;
}
.iconTrue {
  position: absolute;
  right: 9px;
  top: 46px;
  color: rgba(28, 117, 28, 0.822);
  display: none;
  visibility: hidden;
  opacity: 0;
}
.iconFalse {
  position: absolute;
  right: 9px;
  top: 46px;
  color: rgba(207, 22, 22, 0.815);
  display: none;
  visibility: hidden;
  opacity: 0;
}
.showValidity {
  display: block;
  visibility: visible;
  opacity: 1;
}

.inputfield:focus {
  outline: none;
}
.inputfield option {
  color: var(--text-color--);
  background: transparent;
}
.map {
  /* border: 2px solid red; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%);
}

/* media queries */

/* for tablet devices */
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
  .indicator .navigation {
    margin-left: 70px;
  }
  .content {
    padding: 50px 70px;
  }
  iframe {
    width: 300px;
    height: 280px;
  }
  .map {
    /* border: 2px solid red; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(20%, -50%);
  }
  .footItem {
    width: 178px;
    margin: 0.1rem;
  }
}

/* for large mobile */
@media screen and (max-width: 456px) {
  html {
    font-size: 45%;
  }
  .indicator .navigation {
    margin-left: 20px;
  }
  #menu {
    display: none;
    visibility: hidden;
  }
  .hamburger {
    display: block;
  }
  .content {
    padding: 50px 20px;
    /* border: 2px solid red; */
  }
  iframe {
    display: none;
  }
}

/* for medium mobile */
@media screen and (max-width: 375px) {
  html {
    font-size: 45%;
  }
  .formBox form {
    padding: 20px;
  }
  footer {
    justify-content: flex-start;
  }
  .footItem {
    padding: 7px;
    margin: 1px;
    width: 165px;
  }
}

/* Contacts Index Page Styles */
#contactsIndex {
  width: 100%;
  min-height: 100vh;
  padding: 100px 0 50px 0;
}

#contactsIndex .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

#contactsIndex .sectionHeading {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-color, #253898);
  margin-bottom: 2rem;
}

#contactsIndex .bodyText {
  text-align: center;
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 5rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.contact-header {
  background: linear-gradient(135deg, #253898, #5737d6);
  padding: 2.5rem;
  color: white;
}

.contact-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.contact-body {
  padding: 2.5rem;
}

.contact-description {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
}

.contact-description p {
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 1.6rem;
}

.contact-item i {
  color: #253898;
  font-size: 2rem;
  min-width: 2rem;
  margin-top: 3px;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #253898;
}

.address-content {
  line-height: 1.6;
  color: #555;
}

.no-contacts {
  text-align: center;
  padding: 5rem;
  font-size: 1.8rem;
  color: #666;
}

/* Responsive Design for Contacts Index */
@media screen and (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  #contactsIndex .sectionHeading {
    font-size: 3.2rem;
  }
  
  .contact-card {
    margin: 0 1rem;
  }
}

@media screen and (max-width: 426px) {
  #contactsIndex {
    padding: 80px 0 30px 0;
  }
  
  #contactsIndex .sectionHeading {
    font-size: 2.8rem;
  }
  
  #contactsIndex .bodyText {
    font-size: 1.6rem;
  }
  
  .contact-header {
    padding: 2rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-body {
    padding: 2rem;
  }
  
  .contact-description,
  .contact-item {
    font-size: 1.4rem;
  }
}
