@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
section {
  margin: 50px 0;
}
p {
  line-height: 28px;
}
.container-fluid {
  padding: 0 !important;
}
body,
html {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  height: 100%;
  overflow-x: hidden;
}

.nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 30px;
}

.bg-blue {
  background: #cce7f2;
}

.banner {
  position: relative;
  overflow: hidden;
}
.navbar-brand img {
  width: 50%;
}
.banner-left {
  padding: 0;
}
/* Left Image Reveal */
.banner-left img {
  transform: translateX(-100%);
  opacity: 0;
  animation: slideInImage 1s ease-out forwards;
  animation-delay: 0.2s;
}

/* Banner Right - background reveal */
.banner-right {
  position: relative;
  overflow: hidden;
  padding: 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* ::before for animated background fill */
.banner-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #ac2423;
  z-index: -1;
  width: 0;
  animation: fillRightBg 1s ease-out forwards;
  animation-delay: 0.2s;
}

/* Text fade-up after background reveal */
.banner-right h1,
.banner-right p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.banner-right h1 {
  font-weight: 800;
  animation-delay: 1.2s;
}

.banner-right p {
  width: 80%;
  margin-top: 30px;
  animation-delay: 1.5s;
}

/* Keyframes */
@keyframes slideInImage {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fillRightBg {
  to {
    width: 100%;
  }
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* about */
.about {
  padding: 50px 0;
}
.section-title {
  font-size: 40px;
  text-transform: uppercase;
  color: #0f3746;
}

/* mission */
.mission {
  padding-top: 50px;
  background: #fff;
}
.purpose-card-wrapper {
  margin-top: 50px;
  border-top: 0.5px dashed #0f3746;
}
.purpose-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 380px;
  border-right: 0.5px dashed #0f3746;
}
.purpose-card .icon {
  margin-top: 30px;
}
.purpose-card-wrapper .purpose-card:last-child {
  border-right: none;
}
.purpose-card p {
  margin-bottom: 50px;
}

/* industries */
.industries {
  position: relative;
  background: #ac2423;
}
.vertical-swiper {
  height: 117vh;
}

.swiper-slide {
  font-size: 24px;
  background: #ac2423;
  display: flex;
  justify-content: center;
  align-items: center;
}

.industries .col-lg-4 {
  margin-top: 50px;
  padding-left: 100px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #333; /* or your brand color */
}

.swiper-button-next {
  padding: 25px;
  top: 50%;
  border-radius: 50%;
  right: 85%;
  background: #0f3746;
  transform: translateX(50%) rotate(0deg);
}
.swiper-button-prev {
  border-radius: 50%;
  padding: 25px;
  top: 50%;
  left: 6%;
  background: #0f3746;
  transform: translateX(50%) rotate(0deg);
}
.industries .section-title {
  line-height: 70px;
  margin-left: 100px;
  margin-top: 50px;
  color: #fff;
}

.swiper-slide p {
  color: #fff;
  font-size: 16px;
}
.swiper-slide h4 {
  color: #fff;
  text-transform: uppercase;
}
.slider-content {
  padding: 0 100px;
  margin-top: 70px;
}
.slider-content h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

/* accordion */
.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
}
.accordion-item {
  /* background-color: #f5f5f5; */
  margin: 30px 0;
}

.accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-border-radius: 20px;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-item {
  border: 1px solid #cce7f2;
  /* background-color: #f5f5f5; */
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  border-radius: 0;
}

.accordion-button:not(.collapsed) {
}
/* First item - top corners rounded */
.accordion-item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Last item - bottom corners rounded */
.accordion-item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.accordion-item:not(:first-of-type) {
  border-top: 1px solid #cce7f2;
}

.accordion-button {
  font-weight: 500;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* contact  */
input::placeholder,
textarea::placeholder {
  color: #000000;
  font-size: 16px;
}
input,
textarea {
  border: none;
  width: 100%;
  background-color: transparent;
  padding: 35px 22px;
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #000000;
  display: block;
  /* margin: 15px auto; */
  /* border-radius: 10px; */
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
.contact-form #contact .form-group label.error {
  color: #0f3746;
  margin-top: 5px;
  margin-bottom: 0;
  margin-left: 20px;
  font-weight: 800;
  font-size: 13px;
}
.contact .contact-form #error,
.contact .contact-form #success {
  display: none;
  float: left;
}
.contact .contact-form #error {
  background: red;
  color: #fff;
}
.contact .contact-form #success {
  background: green;
  color: #fff;
  position: absolute;
  margin-left: 20px;
}
.contact .contact-form .alert {
  border: none;
  border-radius: 0;
  padding: 20px 30px;
}

.section-contact {
  /* padding: 50px 0; */
}
.section-contact-left {
  padding-left: 120px;
  padding-top: 50px;
}
.section-contact-left p {
  width: 80%;
  margin-top: 50px;
  line-height: 40px;
  font-size: 24px;
}
.section-contact-right {
  padding: 0;
  border-left: 1px solid #0f3746;
}
.section-contact {
  margin-bottom: 0;
}
.submit-btn {
  margin: 100px 0;
  float: inline-end;
  margin-right: 100px;
  background-color: #0f3746;
  padding: 12px 65px;
  color: #fff;
  border-radius: 60px;
}

/* footer */
.footer {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 50px 0;
  margin-top: -35px;
  margin-bottom: 0;
  background-color: #0f3746;
}

.footer-col ul {
  padding-left: 0;
  list-style-type: none;
}

.footer-col ul li a,
.footer-col a {
  color: #fff;
  text-decoration: none;
  line-height: 40px;
  padding-left: 20px;
}
.footer-col ul li a i {
  font-size: 30px;
}
.footer {
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  /* background-color: red; */
}
.swiper-slide-right {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .swiper-slide-right {
    display: block;
  }
  .industries .section-title {
    margin-left: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 110px;
  }
  .swiper-button-next {
    right: 35px;
  }
  .swiper-button-prev {
    left: auto;
    right: 95px;
  }
  .slider-content {
    padding: 0px 25px;
    margin: 20px 0;
  }
  .section-contact-left {
    padding-left: 35px;
  }
  .footer-col ul li a,
  .footer-col a {
    padding-left: 0;
  }
  .footer-col .d-flex a {
    padding-left: 25px;
  }
  .vertical-swiper {
    height: 130vh;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .purpose-card-wrapper {
    justify-content: center;
    border: none;
  }
  .purpose-card {
    border: none;
  }
  .swiper-slide-right {
    display: block;
  }
  .swiper-slide-right img {
    margin: 0 auto;
    display: block;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 110px;
  }
  .swiper-button-next {
    right: 35px;
  }
  .swiper-button-prev {
    left: auto;
    right: 95px;
  }
  .slider-content {
    padding: 0px 25px;
    margin: 20px 0;
  }
  .section-contact-left {
    padding-left: 35px;
  }
  .industries .section-title {
    margin-left: 60px;
  }
  .vertical-swiper {
    height: 95vh;
  }
}

@media (min-width: 992px) and (max-width: 1230px) {
  .banner-right p {
    display: none;
  }
}

@media (min-width: 993px) and (max-width: 1280px) {
  .industries .section-title {
    line-height: 40px;
    margin-left: 25px;
    margin-top: 50px;
    color: #fff;
    width: 40%;
    font-size: 30px;
  }
  .swiper-slide-right img {
    width: 45%;
  }
  .slider-content {
    padding: 0 36px;
  }
  .swiper-button-prev {
    left: 0%;
  }
}

.g-recaptcha {
  margin-top: 30px;
  margin-left: 20px;
}
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/*  */

.purpose-card h4 {
  height: 50px;
}

.purpose-card p {
  height: 100px;
}
