/* @import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", serif;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  background-color: white;
}

.left {
  /* width: 17rem; */
  height: 6rem;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  width: 40%;
  /* background-color: blue; */
}

.left a img {
  height: 4rem;
  width: 100%;
  /* border:2px solid yellow; */
}

.nav-left {
  background-image: url("images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 5rem;
  width: 5rem;
}

.nav-address {
  /* background-color: red; */
  font-size: 14px;
  color: #226c8a;
  height: 6rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  text-align: left;
}

.nav-address a {
  text-decoration: none;
  color: #226c8a;
}

.right {
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 60%;
  justify-content: right;
}

.right > ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  background-color: #ececec;
}

.right ul li a {
  text-decoration: none;
  padding: 12px;
  /* margin-right: 1rem; */
  display: flex;
  /* justify-content: left; */
  text-align: left;
}

.btn {
  height: 3rem;
  width: 12rem;
  cursor: pointer;
  font-weight: 600;
  color: white;
  border: none;
  background-color: #91bf06;
  font-size: 1rem;
  transition: all 0.5s ease-in;
}

.btn:hover {
  color: white;
  background-color: orange;
  animation: all 4s ease-in;
}

.dropdown a {
  color: black;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 20px;
  display: block;
  text-decoration: none;
}

.dropdown:hover > a > i {
  transform: rotate(180deg);
  transition: all 0.2s ease-in;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  height: 6rem;
  padding: 0 1rem;
  border-bottom: 1px solid #ddd;
  position: sticky;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  width: 100%;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.ul-1 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  list-style: none;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.ul-1.active {
  display: block;
}

.dropdown {
  position: relative;
}

.dropdown a:hover {
  background-color: #ececec;
}

.dropdown:hover > .ul-1 {
  display: block;
}

.ul-1 li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  background-color: white;
}

.ul-1 li a:hover {
  background-color: #ececec;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 2rem;
}

@media (max-width: 1200px) {
  .navbar {
    /* justify-content: row; */
    align-items: center;
    height: auto;
  }

  /* .right > ul {
    gap
  }

  .right ul li a{

  } */
}

@media (max-width: 1082px) {
  .nav-address {
    display: none;
  }

  .left {
    width: 25%;
  }
  .right {
    width: 75%;
  }
}

@media (max-width: 992px) {
  .navbar {
    align-items: center;
    height: auto;
  }
  .right > ul {
    gap: 0px;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  .left {
    width: auto;
  }

  .right {
    width: auto;
  }

  .right > ul {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .right > ul.active {
    display: flex;
  }

  .ul-1 {
    display: none;
  }
  .ul-1.active {
    display: block;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

.form-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-details input {
  width: 90%;
  border-radius: 15px;
  padding: 8px 15px;
  margin: 10px;
}

.edit-btn {
  padding: 10px 20px;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.edit-btn:hover {
  background-color: blue;
}

.main {
  height: 300px;
  width: 100%;
  background-image: url("images/about.jpg");
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-1 {
  background-image: url("images/wall-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  max-width: 1050px;
  /* margin: 0 auto; */
  padding: 0;
}

.main-content {
  display: flex;
  flex-direction: column;
  padding-top: 6rem;
  color: white;
  padding-left: 2rem;
  text-align: left;
  justify-content: center;
}

.h1-heading {
  font-size: 2.5rem;
  margin: 0;
}

.h2-heading {
  font-size: 2rem;
  color: #226c8a;
}

.h4-hd {
  margin-top: 1rem;
  display: flex;
  color: darkblue;
  gap: 1rem;
}

.h4-hd a {
  color: white;
  text-decoration: none;
  border-right: 2px solid white;
  padding-right: 1rem;
}

@media (max-width: 1200px) {
  .main-content {
    padding-left: 1.5rem;
  }
}

@media (max-width: 992px) {
  .h1-heading {
    font-size: 2rem;
  }

  .h2-heading {
    font-size: 1.8rem;
  }

  .main-content {
    padding-left: 1rem;
    padding-top: 5rem;
  }
}

@media (max-width: 768px) {
  .main {
    height: 250px;
  }

  .h1-heading {
    font-size: 1.8rem;
  }

  .h2-heading {
    font-size: 1.6rem;
    text-align: left;
  }

  .main-content {
    padding-top: 4rem;
    padding-left: 1rem;
    text-align: center;
  }

  .h4-hd {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main {
    height: 200px;
  }

  .h1-heading {
    font-size: 2rem;
  }

  .h2-heading {
    font-size: 1.5rem;
    text-align: left;
  }

  .section-1 {
    background-image: none; 
  }

  .main-content {
    padding-top: 3rem;
    padding-left: 0.5rem;
    text-align: center;
  }

  .main {
    height: 200px;
    position: relative;
  }

  .main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay with semi-transparent black */
    z-index: 1;
  }

  .main-content {
    position: relative;
    z-index: 2; /* Ensure the content is above the overlay */
    padding-top: 3rem;
    padding-left: 0.5rem;
    text-align: center;
  }

  .h1-heading {
    font-size: 2rem;
    position: relative;
  }

  .h1-heading::after {
    content: "";
    display: block;
    height: 2px;
    width: 50%;
    background-color: white;
    margin: 0.5rem auto 0;
    opacity: 0.8;
  }

  .main img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .main:hover img {
    opacity: 1;
  }

}

.about {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 0;
}

.about-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-bottom: 2rem;
}

.content-1 {
  width: 35rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.about-1 .content-anchor a:hover {
  color: #000;
}

.content-1 p {
  font-size: 16px;
}

.content-1 .heading-required {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.img {
  width: 450px;
  height: 240px;
}

.about-img-1,
.about-img-2,
.about-img-3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 20rem;
  width: 35rem;
}

.about-img-1 {
  background-image: url("images/main-4.jpg");
}

.about-img-2 {
  background-image: url("images/c-1.jpg");
}

.about-img-3 {
  background-image: url("images/about.jpg");
}

.content-anchor a {
  text-decoration: none;
  color: #000;
}

.content-anchor a:hover {
  color: #000;
}

@media (max-width: 1200px) {
  .about-1 {
    gap: 3rem;
  }

  .content-1 {
    width: 30rem;
    padding: 1rem;
  }

  .about-img-1,
  .about-img-2,
  .about-img-3 {
    width: 30rem;
  }
}

@media (max-width: 992px) {
  .about-1 {
    flex-direction: column;
    gap: 2rem;
  }

  .about-2 {
    flex-direction: column-reverse;
  }

  .img-1 {
    padding: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .img {
    width: 100%;
  }

  .content-1 {
    width: 100%;
    padding: 1rem;
  }

  .about-img-1,
  .about-img-2,
  .about-img-3 {
    width: 100%;
    height: 15rem;
  }

  .content-1 .heading-required {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-1 {
    flex-direction: column;
    gap: 1rem;
  }

  .about-1 {
    flex-direction: column;
    gap: 2rem;
  }

  .about-2 {
    flex-direction: column-reverse;
  }

  .img-1 {
    padding: 20px;
  }

  .img {
    width: 100%;
  }

  .contetn-1 .h2-heading {
    text-align: left;
  }

  .content-1 {
    width: 100%;
    padding: 1rem;
    text-align: center;
  }

  .about-img-1,
  .about-img-2,
  .about-img-3 {
    width: 100%;
    height: 12rem;
  }

  .content-1 .heading-required {
    font-size: 1.8rem;
  }

  .content-anchor a {
    font-size: 1.2rem;
  }

  .content-1 p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-1 {
    gap: 1rem;
  }

  .about-1 {
    flex-direction: column;
    gap: 2rem;
  }

  .about-2 {
    flex-direction: column-reverse;
  }

  .content-1 {
    width: 100%;
    padding: 1rem;
  }

  .about-img-1,
  .about-img-2,
  .about-img-3 {
    width: 100%;
    height: 10rem;
  }

  .content-1 .heading-required {
    font-size: 1.6rem;
  }

  .content-anchor a {
    font-size: 1rem;
  }

  .ul-list div > li {
    font-size: 12px;
  }
}

.about-capabilities {
  margin: auto;
  height: auto;
  /* width: 0%; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  text-align: left;
  gap: 2rem;
  padding: 3rem;
}

.about-head {
  font-size: 2.5rem;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

.ul-list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.ul-list li {
  padding: 1rem;
  list-style: none;
  font-size: 1rem;
  text-align: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .ul-list li {
    width: 40%;
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .ul-list {
    gap: 2rem;
  }

  .ul-list li {
    width: 45%;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-capabilities {
    padding: 2rem 1rem;
  }

  .ul-list li {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-capabilities {
    padding: 1rem;
  }

  .about-head {
    font-size: 1.8rem;
  }

  .ul-list li {
    width: 100%;
    font-size: 0.9rem;
  }
}

.box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 2rem;
  text-align: center;
  background-color: #ececec;
  box-shadow: 0px 0px 10px 0px rgb(24, 3, 3);
}

.box .heading-required {
  color: #000;
  /* background-color: blue; */
  font-size: 2.5rem;
  margin: 0;
  padding: 0 2rem;
  height: 100%;
  text-align: left;
}

.box .button .btn {
  border: 2px solid white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: transparent;
  color: white;
  cursor: pointer;
}

.box .button .btn:hover {
  background-color: white;
  color: blue;
  animation: all 4s ease-in;
}

@media (max-width: 768px) {
  .box .heading-required {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .box .button .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .box {
    padding: 1.5rem;
  }

  .box .heading-required {
    font-size: 1.6rem;
    text-align: center;
  }

  .box .button .btn {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}

.footer-container {
  margin-top: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f3f3fa;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer {
  height: auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px 0px 20px;
  /* overflow: auto; */
  /* background-color: rgb(234, 227, 227); */
  background-color: #ececec;
  border-radius: 30px 30px 0 0;
}

.foot-1 {
  /* margin-left: 20px; */
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}

.foot-1 a img {
  height: 5rem;
  width: 260px;
}

.foot-1 .address {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

.foot-1 .address p {
  text-align: left;
  font-size: 16px;
}

.footer .footer-top {
  display: flex;
  justify-content: space-around;
  gap: 60px;
  /* flex-wrap: wrap; */
}

.footer .footer-top .foot-2 {
  display: flex;
  gap: 10px;
  /* flex-wrap: wrap; */
}

.footer .footer-top .foot-2 .footer-top-1 {
  margin: 20px;
}

.footer .footer-top .foot-2 .footer-top-1 ul {
  padding-top: 20px;
  list-style: none;
}

.footer .footer-top .foot-2 .footer-top-1 ul li a {
  text-decoration: none;
  line-height: 2rem;
  color: grey;
  font-size: 16px;
}

.footer .footer-top .foot-2 .footer-top-1 ul li a:hover {
  color: #226c8a;
}

.footer .footer-bottom {
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid grey;
}

.footer .footer-bottom .side-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.footer-upper-content {
  display: flex;
  padding: 10px 40px;
}

.social {
  display: flex;
}

.social a {
  font-size: 16px;
  padding: 10px 40px;
}

.social i {
  color: black;
}

.social i:hover {
  color: #226c8a;
}

.footer .footer-bottom .side-1 > div {
  display: flex;
  gap: 10px;
}

.footer .footer-bottom a {
  text-decoration: none;
  color: grey;
  font-size: 16px;
}

.footer .footer-bottom .side-1 a {
  color: #226c8a;
}

.footer .footer-bottom .side-1 a:hover {
  color: #226c8a;
}

.side-1 p {
  font-size: 16px;
}

.side-2 a {
  font-size: 16px;
}

.footer .footer-bottom a:hover {
  color: #226c8a;
}

@media (max-width: 1225px) {
  .footer-container {
    width: 100%;
  }

  /* .footer {
    height: auto;
    padding-top: 20px;
  }

  .foot-1 {
    height: 200px;
    margin-left: 10px;
    width: 100%;
  } */

  .footer-top .foot-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .foot-1 .address {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    text-align: center;
  }

  .foot-1 .address p {
    padding: 0px 50px;
    font-size: 16px;
  }

  .side-1 > p {
    font-size: 13px;
  }

  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer .footer-top .foot-2 .footer-top-1 {
    text-align: center;
  }

  .footer .footer-top .foot-2 {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .footer .footer-bottom .side-1 {
    flex-direction: column;
    align-items: center;
    /* gap: 1px;
    margin-top: 20px; */
  }

  .footer .footer-bottom .side-2 {
    display: flex;
    gap: 5px;
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-bottom a {
    font-size: 16px;
  }

  .footer .footer-top .foot-2 .footer-top-1 ul li a {
    font-size: 14px;
  }

  .last-footer {
    width: 100%;
    height: 100%;
  }

  .last-footer h2 {
    font-size: 14px;
  }

  .last-footer a {
    font-size: 14px;
  }

  .last-footer .left {
    display: none;
  }

  .foot-1 {
    /* margin-left: 20px; */
    width: 300px;
    padding: 20px;
    /* margin: auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1136) {
  .footer,
  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .footer-container {
    width: 100%;
  }

  .side-1 p {
    font-size: 15px;
  }

  .side-2 a {
    font-size: 16px;
  }

  .footer-container {
    width: 100%;
  }

  .last-footer {
    width: 100%;
  }

  .last-footer .left {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-container {
    width: 100%;
  }

  .footer {
    height: auto;
    padding-top: 20px;
  }

  .footer-top .foot-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-left: 10px;
    width: 100%;
  }

  .foot-1 .address {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .foot-1 .address p {
    padding: 0px 50px;
    font-size: 14px;
  }

  .side-1 p {
    font-size: 14px;
  }

  .side-2 a {
    font-size: 14px;
  }

  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer .footer-top .foot-2 .footer-top-1 {
    text-align: center;
  }

  .footer .footer-top .foot-2 {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .footer .footer-bottom .side-1 {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin-top: 20px;
  }

  .footer .footer-bottom .side-2 {
    display: flex;
    gap: 5px;
    flex-direction: column;
    text-align: center;
  }

  .footer .footer-bottom a {
    font-size: 14px;
  }

  .footer .footer-top .foot-2 .footer-top-1 ul li a {
    font-size: 14px;
  }

  .last-footer .left {
    display: none;
  }

  .foot-1 a img {
    height: 4rem;
    width: 230px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    width: 100%;
  }

  .footer .footer-top {
    padding: 20px;
  }

  .footer .footer-top .foot-2 .footer-top-1 ul li a {
    font-size: 12px;
  }

  .foot-1 {
    margin-left: 10px;
    width: 100%;
  }

  .foot-logo {
    height: 30px;
    width: 30px;
    font-size: 14px;
  }

  .foot-1 .left > h2 {
    font-size: 16px;
  }

  .foot-1 .left {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-top .foot-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .foot-1 .address {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .foot-1 .address p {
    padding: 0px 50px;
    font-size: 12px;
  }

  .footer .footer-bottom {
    padding: 10px;
    border-top: none;
  }

  .foot-1 {
    margin-left: 0;
    width: 100%;
  }

  .footer .footer-top .foot-2 {
    flex-direction: column;
    gap: 15px;
  }

  .footer .footer-bottom .side-1 {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin-top: 20px;
  }

  .side-1 p {
    font-size: 12px;
  }

  .side-2 a {
    font-size: 12px;
  }

  .footer .footer-bottom .side-2 {
    display: flex;
    gap: 5px;
    flex-direction: column;
    text-align: center;
  }

  .social a {
    font-size: 16px;
    padding: 10px 25px;
  }
}

.last-footer {
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(234, 227, 227);
  height: 90px;
  width: 100%;
  position: sticky;
  bottom: 0;
  z-index: 99;
}

.last-footer a {
  text-decoration: none;
  color: black;
  cursor: pointer;
  font-size: 12px;
}

.last-footer .foot-logo {
  height: 3rem;
  width: 3rem;
  border: 2px solid #226c8a;
  border-radius: 50%;
}

.last-footer h2 {
  cursor: pointer;
  font-size: 16px;
}

li.custom-text {
  font-size: 12px;
  font-weight: 500;
}
