@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* Globals Start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.container {
  width: 100%;
  margin: auto;
  padding: 0 1rem;
  position: relative;
}

.pageTitle {
  width: 100%;
  background-color: #f7f7f7;
  padding: 2em 0;
}

.pageTitle h2 {
  color: #00307e;
  font-weight: bold;
  margin: 20px 0;
  font-size: 1.5rem;
}

.headerBg {
  background-color: white;
  margin-top: 0;
  position: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.headerBg .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0.4rem 0;
}

.headerBg img {
  height: 60px;
}

.headerBg nav a {
  color: #f6966f !important;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}
/* Globals End */

/* Header Start */
header {
  position: absolute;
  width: 100%;
  margin-top: 1rem;
  z-index: 9999;
}

.headerContainer {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-weight: 700;
}

.headerContact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
}

.selectBox {
  padding: 0.2rem 0.5rem;
  padding-left: 0;
  border-color: #f6966f;
  color: #f6966f;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .headerContact {
    display: none;
  }

  .headerContainer {
    justify-content: center;
  }

  .headerBg .container a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
/* Header End */

/* Swiper Start */
.swiper {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  top: 0;
  left: 0;
}

.slide-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
}

.slide-content h2 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.slide-content p {
  font-size: 1.5rem;
  color: #f9f9f9;
  line-height: 1.1;
}

@media (max-width: 554px) {
  .slide-content {
    left: 45%;
  }
  .slide-content h2 {
    font-size: 3rem;
  }
  .slide-content p {
    font-size: 1.1rem;
  }
}
/* Swiper End */

/* Social Icons Start */
.customSocialMedia {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.customSocialMedia svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: opacity 0.3s ease;
}

.customSocialMedia svg:hover {
  opacity: 0.7;
  cursor: pointer;
}
/* Social Icons End */

/* Boxes Start */
.boxesWrapper {
  background-image: url(./assets/line.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 9999;
  width: 100%;
  margin: auto;
  max-height: 300px;
  height: 300px;
  margin: 3rem 0;
}

.boxesWrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.boxesWrapper .container div {
  width: 33%;
  position: relative;
}

.boxesWrapper .container div:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  top: 0;
  left: 0;
}

.boxesWrapper .container div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.boxesWrapper .container div h2 {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  padding: 0 24px 10px 5px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  z-index: 30;
}

.boxesWrapper .container div h2:before {
  display: inline-block;
  content: "";
  width: 3px;
  height: 50px;
  background: #00a1bc;
  vertical-align: middle;
  margin-right: 5px;
}

@media (max-width: 992px) {
  .boxesWrapper {
    max-height: 100%;
    height: 100%;
  }
  .boxesWrapper .container {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;
  }

  .boxesWrapper .container div {
    width: 100%;
    height: 200px;
  }
}
/* Boxes End */

/* Counter Start */
.counterWrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.counterWrapper .counter {
  width: 33.333333%;
  text-align: center;
}

.counterWrapper .counterNumber {
  white-space: nowrap;
}

.counterWrapper .counter .counterNumber h4:first-of-type {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00307e;
  display: inline;
}

.counterWrapper .counter .counterNumber h4:last-of-type {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00307e;
  display: inline;
}

.counterWrapper p {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 10px;
  color: #00a1bc;
}

@media (max-width: 992px) {
  .counterWrapper .counter {
    width: 45%;
    margin-bottom: 2rem;
  }
}
/* Counter End */

/* World Map Start */
.worldMapWrapper {
  margin: 3rem auto;
  width: 95%;
  max-width: 1440px;
}

.worldMapHeader {
  max-width: 450px;
  margin: 1rem auto;
  text-align: center;
}

.worldMapHeader h2 {
  font-size: 2rem;
  color: #00307e;
  margin-bottom: 0.8rem;
}
.worldMapHeader p {
  font-size: 1rem;
  color: #000;
}

.worldMapWrapper div svg path:hover {
  stroke-width: 2px !important;
}

.tooltip {
  position: absolute;
  color: #00307e;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  pointer-events: none;
  box-shadow: 0 0 5px #ccc;
  display: none;
}

.tooltip.active {
  display: block;
}

@media (max-width: 992px) {
  .worldMapWrapper svg g {
    scale: 0.55;
  }
}

@media (max-width: 768px) {
  .worldMapWrapper svg g {
    scale: 0.5;
  }
}

@media (max-width: 568px) {
  .worldMapWrapper svg g {
    scale: 0.4;
  }
}

@media (max-width: 420px) {
  .worldMapWrapper svg g {
    scale: 0.35;
    overflow: hidden;
  }
}
/* World Map End */

/* CTA Form Start */
.ctaFormWrapper {
  background-image: url("./assets/stock-photo.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 800px;
  position: relative;
}

.ctaCard {
  background-color: #fff;
  border-left: 4px solid #00a1bc;
  padding: 3rem 2rem;
  max-width: 30%;

  position: absolute;
  top: 20%;
  left: 50%;
}

.ctaCard h2 {
  font-size: 1.6rem;
  color: #00307e;
  margin-bottom: 1.5rem;
}

.ctaCard p {
  font-size: 0.9rem;
  line-height: 24px;
  margin-bottom: 35px;
}

.ctaCard a {
  font-size: 0.9rem;
  min-width: 200px;
  font-size: 13px;
  padding: 5px 15px;
  color: #00a1bc;
  border: 2px solid #00a1bc;
  transition: all 0.3s ease;
}

.ctaCard a:hover {
  background-color: #00a1bc;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 992px) {
  .ctaCard {
    max-width: 50%;
    left: 45%;
  }
}

@media (max-width: 568px) {
  .ctaFormWrapper {
    height: 600px;
  }

  .ctaCard {
    max-width: 70%;
    left: 25%;
  }
}

@media (max-width: 410px) {
  .ctaFormWrapper {
    height: 500px;
  }

  .ctaCard {
    max-width: 90%;
    left: 5%;
  }
}
/* CTA Form End */

/* Footer Start */

footer {
  width: 100%;
  background-color: #f4f4f4;
  color: #333;
  padding: 2rem 0 1rem;
}

.footerWrapper {
  display: flex;
  gap: 3rem;
}

.footerAboutSection {
  max-width: 33.33333333%;
}

.footerAboutSection img {
  width: 70%;
  object-fit: contain;
  margin-bottom: 2rem;
}

.footerAboutSection h5 {
  font-size: 0.875rem;
  font-weight: 700;
}

.footerAboutSection p {
  font-size: 0.7rem;
  margin: 10px 0;
  line-height: 1.5;
}

.footerLinksSection {
  flex: 1;
}

.footerLinksSection ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footerLinksSection ul li {
  flex: 0 0 30%;
  max-width: 30%;
  border-bottom: 1px solid #dcdcdc;
}

.footerLinksSection ul li a {
  font-size: 14px;
  color: #00307e;
  line-height: 3.5rem;
  padding: 0 0 1.5rem;
  font-weight: bold;
  margin: 15px 5px;
  transition: color 0.3s ease;
}

.footerLinksSection ul li a:hover {
  color: #00a1bc;
}

.footerContactSection {
  max-width: 60%;
  margin-top: 2rem;
}

.footerContactSection h5 {
  color: #00307e;
  font-size: 0.875rem;
  font-weight: 700;
}

.footerContactSection p {
  font-size: 0.7rem;
  margin: 10px 0;
  line-height: 1.5;
}

.footerContactSection svg {
  margin-top: 0.5rem;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  fill: #00a1bc;
}

.subFooter {
  padding-top: 1rem;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid #dcdcdc;
  font-size: 12px;
}

.subFooter a {
  color: #00307e;
  font-weight: 500;
}

@media (max-width: 992px) {
  .footerWrapper {
    flex-direction: column;
  }

  .footerAboutSection {
    max-width: 100%;
  }

  .footerAboutSection h5 {
    font-size: 1rem;
  }

  .footerAboutSection p {
    font-size: 0.85rem;
  }

  .footerAboutSection img {
    width: 40%;
    margin: 0 auto 2rem;
  }

  .footerLinksSection {
    max-width: 100%;
  }

  .footerContactSection {
    max-width: 100%;
  }

  .footerContactSection h5 {
    font-size: 1rem;
  }

  .footerContactSection p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footerLinksSection ul li {
    flex: 0 0 45%;
    max-width: 50%;
  }
}
/* Footer End */
