/* Animate hamburger to close icon */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Default hamburger */
.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

/* When menu is open → Close icon */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
.navbar{
  max-width: 1200px;
  margin: auto;
}
.nav-item{
  color: #003870;
  font-size: 18px;
  font-weight: 500;
}
.banner_home{
  width: 100%;
  background-image: url('./image/banner_home.png');
  background-size: cover;
  background-position: center;
  padding: 3.5em 0px;
  height: 400px;
}
.banner_home img{
  max-height: 300px;
}
.text-right{
  text-align: right;
}
.banner_home p{
  color: white;
  font-size: 36px;
  font-weight: bold;}

  .section-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  font-size: 28px;
}
.section-subtitle{
  font-family: "HelveticaIFAD";
    color: #000;
    font-weight: initial;
    font-size: 1.5rem;
}
.section-content{
    color: #666;
    font-size: 20px;
    line-height: 28px;
    font-family: "Georgia";
}
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: red;
  margin: 8px auto 0;
}

.info-icon i {
  font-size: 30px;
  color: red;
}

.info-icon h6 {
  margin-top: 10px;
  font-weight: 600;
}

.info-icon p {
  font-size: 14px;
  color: #666;
}

.sticky-card {
  position: sticky;
  top: 80px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      padding: 0px;
  border: none;
}
.top-info .info-box {
  gap: 12px;
}

.info-icon {
  font-size: 42px;
  color: #e60000; /* Red like image */
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  color: #e60000;
  text-transform: uppercase;
  line-height: 1.2;
}

.info-value {
  font-size: 14px;
  color: #6c757d; /* Grey text */
  margin-top: 4px;
}
.sticky-card img{
  background: linear-gradient(to bottom, #fff, #f6f8f9);;
}

.sticky-card .card-body h5, .sticky-card .card-body p {
  padding: 16px;
}
.sticky-card .card-body p strong{
  font-size: 1.25rem;
}

.custom-accordion .accordion-button {
  font-weight: 600;
  font-size: 16px;
  background: #fff;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #000;
  background-color: #fff;
}

.custom-accordion .accordion-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Chevron rotation */
.accordion-button::after {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}


.footer {
  font-size: 14px;
  color: #6c757d;
}

/* Links */
.footer-links {
  color: #6c757d;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 4px;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #555;
  margin-left: 6px;
  text-decoration: none;
}

.social-icons a:hover {
  background: #f5f5f5;
}

/* Desktop vs Mobile */
.footer-mobile {
  display: none;
}

@media (max-width: 991px) {
  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
  }
}
