@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-zoom {
  opacity: 0;
  transition: none;
}

.anim-fade-up.is-visible {
  animation: fadeInUp 0.75s ease forwards;
}

.anim-fade-left.is-visible {
  animation: fadeInLeft 0.75s ease forwards;
}

.anim-fade-right.is-visible {
  animation: fadeInRight 0.75s ease forwards;
}

.anim-zoom.is-visible {
  animation: zoomIn 0.75s ease forwards;
}

.anim-delay-1 {
  animation-delay: 0.1s;
}

.anim-delay-2 {
  animation-delay: 0.2s;
}

.anim-delay-3 {
  animation-delay: 0.3s;
}

.anim-delay-4 {
  animation-delay: 0.45s;
}

.anim-delay-5 {
  animation-delay: 0.6s;
}

.footer-quick-link {
  position: relative;
  color: #333 !important;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-quick-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #065191;
  transition: width 0.3s ease;
}
.footer-quick-link:hover {
  color: #065191 !important;
}
.footer-quick-link:hover::after {
  width: 100%;
}

.footer-contact-link {
  color: #333 !important;
  text-decoration: none;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.footer-contact-link:hover {
  color: #065191 !important;
  letter-spacing: 0.3px;
}

.promise-section ul li {
  transition: transform 0.2s ease;
}
.promise-section ul li:hover {
  transform: translateX(6px);
}

.vm-image,
.leader-img,
.location-img {
  transition: transform 0.4s ease;
}
.vm-image:hover,
.leader-img:hover,
.location-img:hover {
  transform: scale(1.02);
}

.expertise-card {
  transition: transform 0.3s ease;
}
.expertise-card:hover {
  transform: translateY(-6px);
}

body {
  font-family: "Inter", sans-serif;
  color: #262626;
  background-color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: #065191;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

.section-h2 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #065191;
}
@media (max-width: 768px) {
  .section-h2 {
    font-size: 2.2rem;
  }
}

.section-p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #262626;
}

.text-white {
  color: #ffffff !important;
}

.text-blue {
  color: #065191 !important;
}

.bg-blue {
  background-color: #065191 !important;
}

.navbar {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 100px;
  transition: height 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}
.navbar .container {
  height: 100%;
}
.navbar.navbar-scrolled {
  height: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-scrolled .navbar-brand img {
  height: 40px;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
}
.navbar .navbar-brand img {
  height: 55px;
  transition: height 0.3s ease;
}
.navbar .menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #065191;
  cursor: pointer;
  padding: 5px 10px;
  display: block;
}
.navbar .nav-call-icon {
  display: none;
  color: #065191;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-call-icon:hover {
  color: #F6BE1C;
}
.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar .nav-contact {
  display: flex;
  align-items: center;
  color: #065191;
  gap: 20px;
}
.navbar .nav-contact a {
  color: #065191;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.navbar .nav-contact a i {
  font-size: 1.1rem;
}
.navbar .nav-contact .btn-get-in-touch {
  background-color: #0b4a85;
  color: #fff;
  padding: 8px 24px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #0b4a85;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-contact .btn-get-in-touch:hover {
  background-color: transparent;
}

.main-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main-banner .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  margin: -20px auto 0 auto;
  padding: 0 20px;
}
.main-banner .banner-content .hero-logo {
  height: 65px;
}
.main-banner .banner-content h1 {
  color: #ffffff;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.main-banner .banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
  opacity: 0.95;
  line-height: 1.8;
}

.about-section {
  padding: 80px 0;
}
.about-section .about-images {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.about-section .about-images .img-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 2;
}
.about-section .about-images .img-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.vision-mission-section .vm-item .icon img {
  width: 100%;
  height: auto;
}
.vision-mission-section .vm-image {
  transition: all 0.3s ease-in-out;
}
.vision-mission-section .vm-image:hover {
  transform: scale(1.02);
}

.expertise-section {
  background-color: #065191;
  padding: 100px 0;
  color: #ffffff;
}
.expertise-section .expertise-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
  margin-top: 50px;
}
.expertise-section .expertise-grid .expertise-card {
  width: 33.333%;
  padding-right: 40px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.expertise-section .expertise-grid .expertise-card:nth-child(3n+1) {
  border-left: none;
  padding-left: 0;
}
.expertise-section .expertise-grid .expertise-card .icon {
  height: 50px;
  margin-bottom: 20px;
}
.expertise-section .expertise-grid .expertise-card .icon img {
  height: 100%;
}
.expertise-section .expertise-grid .expertise-card h4 {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.expertise-section .expertise-grid .expertise-card p {
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 991px) {
  .expertise-section .expertise-grid .expertise-card {
    width: 50%;
  }
  .expertise-section .expertise-grid .expertise-card:nth-child(n) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 40px;
  }
  .expertise-section .expertise-grid .expertise-card:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }
}

.leadership-section {
  padding: 80px 0;
}
.leadership-section .leader-row {
  background-color: #F5F7F9;
  margin-bottom: 40px;
  align-items: center;
}
.leadership-section .leader-row .leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.leadership-section .leader-row .leader-info {
  padding: 40px;
}
.leadership-section .leader-row .leader-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.leadership-section .leader-row .leader-info h3 span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #262626;
  display: inline-block;
  margin-left: 10px;
}
.leadership-section .leader-row .leader-info p {
  margin: 0;
}

.promise-section {
  padding: 0;
}
.promise-section .promise-content {
  background-color: #065191;
  color: #ffffff;
  padding: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promise-section .promise-content h2 {
  margin-bottom: 15px;
}
.promise-section .promise-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.promise-section .promise-content ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.promise-section .promise-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 500px;
}

.development-location {
  padding: 80px 0;
}
.development-location .brand-essence h2 {
  line-height: 1.2;
  margin-bottom: 50px;
}
.development-location .dev-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.location-box {
  background-color: #065191;
  color: #ffffff;
  padding: 60px 40px;
  height: 100%;
}
.location-box h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 20px;
}
.location-box h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}
.location-box p {
  margin-bottom: 30px;
}
.location-box ul {
  list-style: none;
  padding: 0;
}
.location-box ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.location-box ul li::before {
  content: "•";
  color: #ffffff;
}
.location-box .strong-text {
  font-weight: 600;
  margin-top: 30px;
  display: block;
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.footer {
  background-color: #ffffff;
  padding: 40px 0 20px;
  border-top: 1px solid #eee;
}
.footer .footer-logo img {
  max-width: 250px;
}
.footer .footer-contact h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #065191;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer .footer-contact p,
.footer .footer-contact a {
  font-size: 0.9rem;
  color: #262626;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
}
.footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #065191;
}
.footer .copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #666;
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .main-banner {
    max-height: 550px;
  }
}
@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
  .navbar.navbar-scrolled {
    height: 60px;
  }
  .navbar.navbar-scrolled .navbar-brand img {
    height: 35px;
  }
  .navbar .navbar-brand img {
    height: 40px;
  }
  .navbar .nav-right {
    gap: 10px;
  }
  .navbar .nav-contact {
    display: none;
  }
  .navbar .nav-call-icon {
    display: block;
    font-size: 1.2rem;
  }
  .navbar .menu-toggle {
    font-size: 1.3rem;
    padding: 5px;
  }
  .main-banner .banner-content h1 {
    font-size: 3rem;
  }
  .expertise-grid .expertise-card {
    width: 100% !important;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-bottom: 20px;
  }
  .about-section .about-images {
    min-height: 300px;
    margin-top: 40px;
  }
  .promise-section .promise-content {
    padding: 40px 20px;
  }
  .location-box {
    padding: 40px 20px;
  }
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 1050;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
}
.mobile-menu .menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #065191;
  cursor: pointer;
  padding: 5px 10px;
}
.mobile-menu .menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu .menu-links li {
  margin-bottom: 20px;
}
.mobile-menu .menu-links li a {
  color: #065191;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(6, 81, 145, 0.1);
  transition: all 0.3s ease-in-out;
}
.mobile-menu .menu-links li a:hover {
  color: #F6BE1C;
  padding-left: 10px;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}
body.menu-open .mobile-menu {
  right: 0;
}

/*# sourceMappingURL=main.css.map */
