body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  color: #04133e;
  line-height: 1.2em;
}
a {
  text-decoration: none;
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-50 {
  padding-top: 50px;
}
.pb-50 {
  padding-bottom: 50px;
}
/* Header */
/* .custom-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
} */
.custom-header .navbar-brand {
  font-weight: 700;
  font-size: 22px;
  color: #04133e;
}
.custom-header {
  background: #fff;
  width: 100%;
  position: absolute; /* normal at top */
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}

.custom-header.sticky {
  position: fixed; /* becomes sticky */
  top: -80px; /* start above view */
  animation: slideDown 0.5s forwards;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  to {
    top: 0; /* slide smoothly into place */
  }
}
.custom-header .nav-link {
  font-weight: 500;
  color: #04133e !important;
  margin-left: 20px;
  transition: color 0.3s;
}
.custom-header .nav-link:hover {
  color: #0d6efd !important;
}

/* Banner */
.text {
  color: #646464;
  font-size: 16px;
  line-height: 35px;
  font-weight: 400;
}
.banner {
  background: linear-gradient(
      103deg,
      rgba(27, 63, 171, 0.9) 38.63%,
      rgba(11, 49, 48, 0) 96.73%
    ),
    url("../../assets/images/banner-2.jpg") no-repeat center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  text-align: left;
}
.banner h1 {
  font-size: 65px;
  font-weight: 700;
}
.banner-contact {
  position: absolute;
  bottom: 0px;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  background: rgba(255, 255, 255, 0.1);
  /* border-radius: 10px; */
  backdrop-filter: blur(5px);
  /* max-width: 1200px; */
  justify-content: center;
  width: 100%;
  padding: 20px;
}
.banner-contact a span {
  color: #fff;
  font-size: 20px;
}
.banner-contact p {
  margin: 0;
  font-size: 15px;
  color: #fff;
}
.banner-contact i {
  margin-right: 8px;
  color: #0d6efd;
}

/* About Section */
.sec-title {
  position: relative;
}
.sub-title h5 {
  color: #9f9f9f;
  font-weight: 600;
  font-size: 16px;
  align-items: center;
  /* padding-left: 10px; */
}
.about-section {
  padding: 80px 0;
}
.about-subtitle {
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.about-section h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-section p {
  margin-bottom: 20px;
}
.about-btn {
  padding-top: 20px;
}
.about-btn a {
  background: #1b3fab;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.about-btn a:hover {
  background: #04133e;
}
.banner-contact {
  border-top: 1px solid #f2f2f291;
}
.my-border {
  border-left: 1px solid #f2f2f291;
  border-right: 1px solid #f2f2f291;
}
/* Service */
.service-sec {
  overflow: hidden;
  background-image: url("../images/service-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.sec-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
/* team */
.team-section-five {
  /* padding: 120px 50px 0; */
  background-image: url("../images/board-of-director-bg2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.team-section-five.have-after {
  position: relative;
  z-index: 1;
}
.team-section-five::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(27 63 171 / 39%);
  z-index: 0;
}
.director-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.initials {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #0d1326;
  background: conic-gradient(
    from 180deg,
    #e8f2ff,
    #b3d4ff,
    #c9ffe2,
    #ffe6b3,
    #e8f2ff
  );
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6),
    0 6px 18px rgba(0, 0, 0, 0.18);
}
.role {
  color: #0b0f1c;
  background: rgba(11, 15, 28, 0.08);
  letter-spacing: 1px;
}
.director-card h3 {
  color: #04133e;
}
/* Contact */
.contact-section {
  padding: 50px 0;
  background-image: linear-gradient(rgb(30 24 70 / 18%), rgb(30 102 207 / 51%)),
    url(../images/contact-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 180px;
}

.my-section {
  margin-top: -120px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 0px;
}
.contact-inner {
  background: #fff;
  padding: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-info i {
  color: #0d6efd;
  margin-right: 10px;
}

.contact-section .btn-custom {
  background: #0d6efd;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  width: 100%;
  transition: 0.3s;
}

.contact-section .btn-custom:hover {
  background: #04133e;
}

.bg-image {
  background-image: linear-gradient(
      rgba(24, 24, 26, 0.65),
      rgba(17, 17, 17, 0.85)
    ),
    url("../images/contact-bg1.jpg");
  min-height: 100%;
  position: relative;
  background-size: cover;
}
.contact-info ul {
  padding-left: 0px;
}
.contact-info ul li,
.contact-info ul li a {
  list-style: none;
  color: #333;
  list-style: none;
  color: #333;
  font-size: 16px;
}
.contact-info i {
  font-size: 20px;
  color: #1b3fab;
  margin-right: 12px;
  background: #e7f1ff;
  padding: 10px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 22px;
}
.contact-info h4 {
  font-weight: 700;
}
/* logo carsousel */
.logo-carousel {
  padding: 10px 0;
}

.swiper-slide {
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.swiper-slide img {
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.1);
}

.swiper-slide p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.footer-section {
  background: #113ab5;
  padding: 10px;
}
.footer-section a {
  color: rgb(252, 196, 14);
}
.company-name h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 900px !important;
  padding-top: 30px;
}
.my-div {
  padding: 100px 30px 30px;
}
@media (max-width: 992px) {
  .bg-image {
    min-height: 250px;
  }
}
.my-btn a {
  background-color: #1b3fab;
  color: #fff;
  padding: 10px 17px;
  border-radius: 22px;
}
.my-btn {
  float: right;
}
