nav {
  width: 93.5%;
  background-color: white;
  box-shadow: 1px 1px 10px rgba(189, 190, 192, 0.386);
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  z-index: 1;
}

nav .nav-left img {
  width: 120px;
}

nav .nav-center ul {
  display: flex;
  list-style: none;
  gap: 50px;
}
nav .nav-center ul li a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

nav .nav-center ul li a:hover {
  color: rgb(5, 40, 106);
}

nav .nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
nav .nav-right button {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: white;
  color: gray;
  padding: 0;
}
nav .nav-right button i {
  padding: 5px 10px;
  background-color: rgb(5, 40, 106);
  color: rgb(244, 243, 243);
}
nav .nav-right i {
  font-size: 24px;
  color: black;
}
nav .nav-right i:hover {
  color: rgb(5, 40, 106);
}

#active {
  color: rgb(5, 40, 106);
  border-bottom: 4px solid rgb(5, 40, 106);
  border-radius: 3px;
  padding: 0px 10px 27px 10px;
}

@media (max-width: 1023px) {
  nav {
    padding: 0px 20px;
    width: 97%;
  }
  nav .nav-center ul {
    gap: 20px;
  }
  nav .nav-right i:nth-child(1) {
    display: none;
  }
  .menu {
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 30px;
  }
  .about .container .who {
    flex-direction: column;
    text-align: center;
  }
  .about .container .who img {
    width: 80%;
    margin: auto;
  }
  .features {
    align-items: center;
  }
  .team-members {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  nav {
    padding: 10px;
    width: 95%;
  }
  nav .nav-left img {
    width: 90px;
  }
  nav .nav-center ul {
    gap: 10px;
  }
  nav .nav-center ul li a {
    font-size: small;
  }
  nav .nav-right {
    display: none;
  }
  #active {
    border: none;
  }
}
.head {
  height: 70vh;
  width: 100%;
  background: linear-gradient(to right bottom, rgba(20, 18, 18, 0.842), rgba(39, 38, 38, 0.93)), url(../../img/image\ copy\ 5.png) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head .text-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
  color: white;
}
.head .text-head h1 {
  font-size: 50px;
}
.head .text-head h4 {
  font-size: 30px;
}

@media (max-width: 767px) {
  .head .text-head h1 {
    font-size: 40px;
  }
}
.con {
  display: flex;
  padding: 100px;
  gap: 40px;
}
.con .con-left {
  flex: 1;
  display: flex;
  gap: 80px;
  flex-direction: column;
  transition: all 0.3s ease;
}
.con .con-left .group-icon {
  display: flex;
  gap: 50px;
  align-items: center;
}
.con .con-left .group-icon i {
  font-size: 30px;
  color: rgb(80, 73, 73);
  padding: 15px;
  border-radius: 50px;
  background-color: rgba(0, 255, 255, 0.162);
  transition: all 0.3s ease;
}
.con .con-left .group-icon i:hover {
  transform: scale(1.2);
  background-color: rgba(0, 255, 255, 0.4);
  color: rgb(0, 80, 80);
}
.con .con-left .group-icon .info {
  line-height: 1.5;
}
.con .con-left .group-icon .info p {
  font-size: 25px;
  transition: color 0.3s ease;
}
.con .con-left .group-icon .info span {
  font-size: 20px;
  color: rgb(94, 90, 90);
  transition: color 0.3s ease;
}
.con .con-left .group-icon:hover .info p {
  color: rgb(0, 80, 80);
}
.con .con-left .group-icon:hover .info span {
  color: rgb(0, 60, 60);
}
.con .con-left h1 {
  font-size: 50px;
  transition: color 0.3s ease;
}
.con .con-left:hover h1 {
  color: rgb(0, 180, 180);
}
.con .con-right {
  flex: 1;
}
.con .con-right form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.con .con-right form .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.5;
}
.con .con-right form .info input {
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: text;
}
.con .con-right form .info input:hover {
  border: 2px solid rgb(8, 8, 174);
  box-shadow: 0px 4px 15px rgba(0, 200, 200, 0.3);
  transform: translateY(-2px);
}
.con .con-right form .info input:focus {
  outline: none;
  border: 2px solid rgb(8, 8, 174);
  box-shadow: 0px 0px 10px rgba(0, 200, 200, 0.5);
}
.con .con-right form .info #text {
  padding: 50px;
  transition: all 0.3s ease;
}
.con .con-right form .info #text:hover {
  border: 2px solid rgb(8, 8, 174);
  box-shadow: 0px 4px 15px rgba(0, 200, 200, 0.3);
  transform: translateY(-2px);
}
.con .con-right form .info #text:focus {
  outline: none;
  border: 2px solid rgb(8, 8, 174);
  box-shadow: 0px 0px 10px rgba(0, 200, 200, 0.5);
}
.con .con-right form button {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: none;
  background: rgb(8, 8, 174);
  color: white;
  font-size: large;
  cursor: pointer;
  transition: all 0.3s ease;
}
.con .con-right form button:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, rgb(25, 227, 112), rgb(0, 213, 255));
  box-shadow: 0px 5px 15px rgba(0, 200, 200, 0.4);
}

.con-small {
  margin-top: 100px;
  height: 30vh;
  background-color: rgba(0, 255, 255, 0.162);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.con-small:hover {
  background-color: rgba(0, 255, 255, 0.3);
}
.con-small .fol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.con-small .fol p {
  font-size: 20px;
  transition: color 0.3s ease;
}
.con-small .fol:hover p {
  color: rgb(0, 80, 80);
}
.con-small .fol .group-icon {
  display: flex;
  gap: 40px;
}
.con-small .fol .group-icon i {
  font-size: 40px;
  color: rgb(44, 42, 42);
  transition: all 0.3s ease;
}
.con-small .fol .group-icon i:hover {
  transform: scale(1.2);
  color: rgb(0, 100, 100);
}

.con-smaller img {
  width: 100%;
  transition: transform 0.3s ease;
}
.con-smaller img:hover {
  transform: scale(1.05);
}
.con-smaller .text {
  width: 100%;
  height: 50vh;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../img/image\ copy\ 7.png) center/cover no-repeat;
  transition: all 0.4s ease;
}
.con-smaller .text button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  margin-top: 30px;
  color: white;
  background: linear-gradient(to left bottom, rgb(0, 213, 255), rgb(25, 227, 112));
  cursor: pointer;
  transition: all 0.3s ease;
}
.con-smaller .text button:hover {
  transform: scale(1.1);
  background: linear-gradient(to left bottom, rgb(25, 227, 112), rgb(0, 213, 255));
  box-shadow: 0px 5px 20px rgba(0, 200, 200, 0.5);
}
.con-smaller .text h1 {
  margin-bottom: 20px;
  color: rgb(19, 250, 250);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.con-smaller .text h1:hover {
  color: #ffd700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.con-smaller .text p {
  color: white;
  transition: color 0.3s ease;
}
.con-smaller .text p:hover {
  color: #d0f0ff;
}

@media (max-width: 1023px) {
  .con {
    padding: 50px;
  }
  .con .con-left .group-icon {
    gap: 10px;
  }
  .con .con-left h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .con {
    flex-direction: column;
    padding: 30px;
  }
  .con .con-left {
    gap: 10px;
  }
  .con .con-left .group-icon {
    gap: 10px;
  }
  .con .con-left .group-icon .info p {
    font-size: 15px;
  }
  .con .con-left .group-icon .info span {
    font-size: small;
  }
  .con .con-left h1 {
    font-size: 30px;
  }
  .con-small {
    height: 20vh;
  }
  .con-small .fol p {
    font-size: 15px;
  }
  .con-small .fol .group-icon {
    gap: 30px;
  }
  .con-small .fol .group-icon i {
    font-size: 30px;
  }
  .text h1 {
    font-size: 20px;
  }
}
button {
  padding: 10px 20px;
  border-radius: 5px;
  background: #0d387c;
  border: 2px solid #0d387c;
  color: white;
}

/* Footer Styling */
.footer {
  background: #fff;
  padding: 50px 80px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  width: 22%;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer h2.logo {
  font-family: "Brush Script MT", cursive;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #0073e6;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0073e6;
}

.app-links img {
  width: 140px;
  margin: 5px 0;
  display: block;
}

.payments img {
  width: 50px;
  margin-right: 10px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

@media (max-width: 1023px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 200px;
         column-gap: 200px;
  }
  .footer-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 20px;
  }
  .footer-container {
    gap: 10px;
  }
  .footer-container .footer-col ul li a {
    font-size: small;
  }
  .footer-container .footer-col .logo {
    font-size: 15px;
  }
  .footer-container .footer-col p {
    font-size: small;
  }
  .payments img {
    width: 40px;
  }
  .header h1 {
    font-size: 28px;
    text-align: center;
  }
}
* {
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "Montserrat", sans-serif;
}/*# sourceMappingURL=contact.css.map */