@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}
.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}
.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.roboto-condensed-300 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.roboto-condensed-700 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
:root {
  --primary-blue: #016bae;
  --secondary-ochre: #ff4d00;
  --light-ochre: #e2d1b9;
  --dark-blue: #014f82;
  --white: #ffffff;
  --light-gray: #f4f4f4;
  --dark-gray: #333333;
  --gray-section: rgba(217, 217, 217, 0.1);
  --gray-border: #d9d9d9;
  --transition-speed: 0.4s;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--primary-blue);
}
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  font-size: 1rem;
}
a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color var(--transition-speed);
}
a:hover {
  color: var(--dark-blue);
}
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
button::before,
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--dark-blue);
  transition: width var(--transition-speed);
  z-index: -1;
}
button:hover,
.btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(1, 107, 174, 0.3);
}
button:hover::before,
.btn:hover::before {
  width: 100%;
}
.btn-secondary {
  background-color: var(--secondary-ochre);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed);
}
header.scrolled {
  padding: 10px 0;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  width: 100%;
  max-width: 1400px;
  transition: all var(--transition-speed);
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 40px;
  list-style: none;
}
header nav ul li {
  font-weight: 500;
  font-size: 1.05rem;
}
header nav ul li a {
  position: relative;
  padding: 5px 0;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-ochre);
  transition: width var(--transition-speed);
}
header nav ul li a:hover {
  color: var(--secondary-ochre);
}
header nav ul li a:hover ::after {
  width: 100%;
}
header nav ul li a.active {
  color: var(--secondary-ochre);
}
header nav ul li a.active::after {
  width: 100%;
}
header .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .logo img {
  height: 60px;
}
header .mobile-toggle {
  display: none;
  cursor: pointer;
  position: fixed;
  align-items: center;
  justify-content: center;
  right: 16px;
  top: 20px;
}
header .mobile-toggle .menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent url("../images/menu.svg") no-repeat center;
  width: 32px;
  height: 32px;
}
header .mobile-toggle.active .menu {
  background-image: url("../images/close.svg");
}
@media (max-width: 1024px) {
  header .container nav ul {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  header.scrolled {
    padding: 0;
  }
  header .main-menus {
    overflow: hidden;
    max-height: 0;
  }
  header .main-menus.active {
    max-height: inherit;
    display: flex;
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    background: #fff;
    padding: 30px 20px;
    box-sizing: border-box;
    flex-direction: column;
    border-top: 1px solid var(--gray-border);
  }
  header .main-menus ul {
    flex-direction: column;
  }
  header .mobile-toggle {
    display: inline-flex;
  }
}
.icon-linkedin,
.icon-twitter,
.icon-facebook,
.icon-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: transparent;
  background-image: url("../images/social_icons.svg");
  background-repeat: no-repeat;
}
.icon-linkedin {
  background-position: 0 0;
}
.icon-twitter {
  background-position: -70px 0;
}
.icon-facebook {
  background-position: -140px 0;
}
.icon-instagram {
  background-position: -210px 0;
}
footer {
  background-color: var(--dark-blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 35px 0 20px;
}
footer .footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
footer .footer-logo {
  margin-bottom: 15px;
  display: block;
}
footer .footer-logo img {
  width: 250px;
  max-width: 100%;
  object-fit: contain;
}
footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
footer .social-icons .social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
footer .social-icons .social-icon:hover {
  background-color: var(--secondary-ochre);
  transform: translateY(-5px);
}
footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-bottom p {
  font-size: 0.875rem;
}
footer .footer-links-container h6 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
footer .footer-links-container li {
  margin-bottom: 12px;
}
footer .footer-links-container li:last-child {
  margin-bottom: 0;
}
footer .footer-links-container a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}
footer .footer-links-container a:hover {
  opacity: 1;
  padding-left: 5px;
}
section {
  padding: 50px 0;
  width: 100%;
}
section .container {
  position: relative;
}
section .section-title {
  display: block;
  margin-bottom: 25px;
}
section .section-title h1 {
  max-width: 560px;
}
section .section-title p {
  margin-top: 25px;
}
section .section-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
section h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 56px;
  font-weight: 300;
}
section h1 span {
  font-weight: 700;
  color: var(--secondary-ochre);
}
section p {
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}
section h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
}
section h4 {
  font-size: 28px;
  font-weight: 400;
}
section ul {
  list-style: none;
}
section ul li p:last-child {
  margin-bottom: 0;
}
section .features-container {
  width: 50%;
  animation: fadeInLeft 1s ease-out;
}
section .features-container ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
section .image-container {
  width: 50%;
  position: relative;
  animation: fadeInRight 1s ease-out;
}
section .image-container img {
  width: 100%;
  max-width: 660px;
  height: auto;
  object-fit: contain;
}
section.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 150px;
}
section.hero::before {
  content: "";
  background: transparent url("../images/bubble_bg.png") no-repeat center
    left/contain;
  transform: rotate(-180deg);
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  max-width: 479px;
  height: 940px;
}
section.hero .hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
section.hero p {
  font-size: 20px;
}
section.hero .image-container img {
  margin-top: -150px;
}
section.about {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  background: var(--gray-section);
  box-shadow: inset 0px -4px 34px rgba(0, 0, 0, 0.1);
}
section.story .image-container img {
  max-height: 450px;
  margin-top: -70px;
}
section.services {
  background: var(--white);
}
section.services p {
  font-size: 22px;
  text-align: center;
}
section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 20px;
  margin-top: 50px;
}
section .service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px 20px;
  transition: all var(--transition-speed);
  border: solid 1px var(--gray-border);
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}
section .service-card:hover {
  transform: scale(1.02);
  background: var(--primary-blue);
}
section .service-card:hover p,
section .service-card:hover h4 {
  color: var(--white);
}
section .service-card:hover::before {
  width: 100%;
}
section .service-card .service-icon {
  margin-bottom: 15px;
  transition: all var(--transition-speed);
}
section .service-card .service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
section .service-card h4 {
  margin-bottom: 15px;
  transition: all var(--transition-speed);
}
section .service-card p {
  font-size: 1rem;
  transition: all var(--transition-speed);
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  section .section-title h1 {
    max-width: 100%;
  }
  section.hero .image-container img,
  section.story .image-container img {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  section h1 {
    font-size: 48px;
  }
  section.hero {
    padding-top: 120px;
  }
  section.hero::before {
    width: 100%;
  }
  section .section-content {
    flex-direction: column;
  }
  section .section-content .features-container,
  section .section-content .image-container {
    width: 100%;
  }
  section .section-content .image-container {
    text-align: center;
  }
  section .section-content .image-container img {
    max-width: 500px;
  }
  section .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(47%, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  section.hero .hero-cta {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  section .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
@media (max-width: 512px) {
  section.hero .hero-cta {
    flex-direction: column;
  }
}
.contact {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0px -4px 34px rgba(0, 0, 0, 0.1);
}
.contact::before {
  content: "";
  background: transparent url("../images/bubble_bg.png") no-repeat center
    right/contain;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  max-width: 479px;
  height: 940px;
}
.contact p {
  font-size: 22px;
  text-align: center;
}
.contact h5 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.contact .contact-container {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}
.contact .contact-container p {
  font-size: 1rem;
  text-align: left;
}
.contact .contact-info {
  flex: 1;
}
.contact .contact-info ul {
  display: inline-flex;
  flex-direction: column;
  gap: 30px;
}
.contact .contact-info h5 {
  margin-bottom: 20px;
}
.contact .contact-info a {
  color: var(--dark-gray);
}
.contact .contact-form {
  flex: 1;
  padding: 40px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.contact .form-group {
  margin-bottom: 20px;
}
.contact .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s;
  resize: none;
}
.contact .form-control:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 107, 174, 0.2);
}
.contact textarea {
  resize: vertical;
  min-height: 120px;
}
.contact .btn {
  min-width: 170px;
}
@media (max-width: 768px) {
  .contact::before {
    width: 100%;
  }
  .contact .contact-container {
    flex-direction: column;
  }
}

.story {
  background-color: var(--gray-section);
  box-shadow: inset 0px -4px 34px rgba(0, 0, 0, 0.1);
}

#goToTopButton {
  display: inline-block;
  background-color: #ff4d00;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#goToTopButton::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#goToTopButton:hover {
  cursor: pointer;
  background-color: #f4692d;
}
#goToTopButton:active {
  background-color: #0e0e0e;
}
#goToTopButton.show {
  opacity: 1;
  visibility: visible;
}

.fa-x-twitter {
  color: #fff;
}

/* Custom Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90vw;
  max-width: 350px;
  min-height: 200px;
  /* color: #2fa72f; */
}

.modal-content .close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 30px;
  font-weight: 300;
  color: rgba(0,0,0,0.35);
  cursor: pointer;
}
.modal-content .close:hover {
  color: rgba(0,0,0,0.75);
}

.modal-content p {
  margin-top: 20px;
  font-size: 1rem;
}
.modal-content .icon-success, .modal-content .icon-error {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.modal-content .icon-success {
  background: transparent url("../images/icon_success.svg") no-repeat 0 0 / contain;
}
.modal-content .icon-error {
  background: transparent url("../images/icon_error.svg") no-repeat 0 0 / contain;
}
/*.success-text {
  color: #2fa72f;
}

.error-text {
  color: #ff0000;
}*/
