@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1240px;
}

body {
  font-family: "Inter", sans-serif !important;
  font-optical-sizing: auto !important;
  font-weight: 600 !important;

}

.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
}

.navbar:not(.scrolled) {
  background-color: transparent;
  padding: 1.25rem 1rem;
}

.navbar-brand {
  color: #0055a5 !important;
  /* ibai-blue */
  font-weight: bold;
  font-size: 1.25rem;
}

.nav-link {
  color: #0055a5 !important;
  font-weight: 500;
  margin: 0px 15px;
}

.nav-link:hover {
  color: #004080 !important;
}

.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dropdown-item {
  color: #4a4a4a;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  /* ibai-gray */
}

.nav-btn {
  background-color: #0055a5;
  border-color: #0055a5;
  transition: transform 0.3s ease;
  color: white;
  border-radius: 20px;
  font-weight: 600;
  padding: 8px 25px;
  font-size: 16px;
}

.nav-btn:hover {
  background-color: #004080;
  border-color: #004080;
  color: white;
  /* transform: scale(1.05); */
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
  }

  .navbar-nav .btn {
    width: 100%;
    margin-top: 1rem;
  }
}




/* hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  /* white to ibai-gray */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/hero-new-bg.avif');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.decorative-circle-1 {
  position: absolute;
  top: 5rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(173, 216, 230, 0.3);
  /* ibai-lightblue/30 */
  border-radius: 50%;
  filter: blur(3rem);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.decorative-circle-2 {
  position: absolute;
  bottom: 5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(0, 85, 165, 0.2);
  /* ibai-blue/20 */
  border-radius: 50%;
  filter: blur(3rem);
  z-index: 0;
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1140px;
  padding: 0 15px;
}

.badge {
  display: inline-block;
  background-color: rgba(0, 85, 165, 0.1);
  color: #0055a5;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 15px;
  transition: all 1s ease-out;
  margin-top: 20px;
}

.hero-main-title {
  font-size: 59px;
  font-weight: 600;
  color: #0055a5;
  margin-bottom: 17px;
  transition: all 1s ease-out 0.3s;
  line-height: 61px;
  margin-top: 19px;
}

.hero-para {
  font-size: 1.125rem;
  color: rgba(0, 85, 165, 0.8);
  /* ibai-blue/80 */
  max-width: 48rem;
  margin: 0 auto 2rem;
  transition: all 1s ease-out 0.5s;
}

.member-btn1 {
  background-color: #0055a5;
  border-color: #0055a5;
  color: #fff;
  padding: 9px 21px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  border-radius: 51px;
  font-weight: 600;
  font-size: 15px;
}

.member-btn1:hover {
  background-color: #004080;
  border-color: #004080;
  transform: translateX(4px);
  color: white;
}

.learn-btn {
  color: #0055a5;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.learn-btn:hover {
  text-decoration: underline;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 3rem;
  transition: all 1s ease-out 1s;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #0055a5;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(0, 85, 165, 0.7);
  /* ibai-blue/70 */
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(5px);
  }
}

/* Animation for visibility */
.fade-in {
  opacity: 0;
  transform: translateY(2.5rem);
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }

  p {
    font-size: 1.25rem;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-value {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 5rem;
  }
}

.section {
  background-color: #fff;
  padding: 5rem 0;
}

.ibai-blue {
  color: #1e40af;
  /* Assuming ibai-blue is a shade of blue */
}

.bg-ibai-blue-10 {
  background-color: rgba(30, 64, 175, 0.1);
}

.bg-ibai-blue-5 {
  background-color: rgba(30, 64, 175, 0.05);
}

.bg-ibai-blue-80 {
  color: #0b5ea9;
}



.role-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0963ad;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 36rem;
  margin-bottom: 3rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  /* backdrop-filter: blur(10px); */
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  box-shadow: 0px 2px 3px -1px #f0eded;
  margin-bottom: 18px;
  border-radius: 10px;
  WIDTH: 95%;
  padding: 21px;
}

.glass-card p {
  font-size: 18px;
  margin-top: 2px;
  font-weight: 500;
}

.glass-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0px 2px 5px 0px lightgray;
  border-radius: 13px;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(30, 64, 175, 0.05), rgba(30, 64, 175, 0.1));
  border-radius: 1.5rem;
  display: none;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

form.contact-glass-panel h3 {
  color: #0963ad;
  font-weight: 800;
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }
}

.section {
  /* background-color: #fafafa;  */
  padding: 5rem 0;
}

section.why-section {
  background: white;
}

.why-wraper-cov {
  width: 92%;
  background: #fafafa;
  margin: 0 auto;
  padding: 30px 0px;
}

/* .ibai-blue {
    color: #1e40af; 
  } */

.bg-ibai-blue-10 {
  background-color: rgba(30, 64, 175, 0.1);
}

.text-ibai-blue-70 {
  color: rgba(30, 64, 175, 0.7);
}

.text-ibai-blue-60 {
  color: rgba(30, 64, 175, 0.6);
}

.why-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0963ad;
  margin-bottom: 9px;
}

.why-section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 36rem;
  margin-bottom: 3rem;
}

.why-glass-card {
  background: rgb(255 255 255);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  box-shadow: 0px 1px 3px -1px lightgray;
  border-radius: 10px;
}

.why-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 3px 0px 0px #ededed;
}


.why-glass-card h3 {
  font-size: 23px !important;
}

.why-glass-card p {
  font-size: 17px;
  color: rgb(158 158 158);
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }
}

.card-arow {
  rotate: 310deg;
}


.section {
  background-color: #f7fafc;
  /* Assuming ibai-gray is a light gray */
  padding: 5rem 0;
}

.ibai-blue {
  color: #1e40af;
  /* Assuming ibai-blue is a shade of blue */
}

.bg-ibai-blue-10 {
  background-color: rgba(30, 64, 175, 0.1);
}

.bg-ibai-blue-5 {
  background-color: rgba(30, 64, 175, 0.05);
}

.text-ibai-blue-70 {
  color: rgb(9 99 173 / 95%);
}

.text-ibai-blue-60 {
  color: rgb(9 99 173 / 95%);
}

.reports-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0963ad;
  margin-bottom: 10px;
}

.reports-section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 36rem;
  margin-bottom: 3rem;
}

.report-glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  background: white;
  box-shadow: 0px 2px 3px -2px lightgray;
}

.report-glass-card:hover {
  transform: translateY(-5px);
}

.icon {
  width: 1rem;
  height: 1rem;
}

.file-icon {
  width: 2rem;
  height: 2rem;
  color: #0963ad;
}

.rounded-2xl {
  border-radius: 1rem;
}

.pub-btn {
  background-color: #0963ad;
  border-color: #0963ad;
  color: #fff;
  font-weight: 600;
  padding: 11px 19px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.pub-btn:hover {
  background-color: #1e3a8a;
  border-color: #1e3a8a;
}

.pub-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.pub-btn:hover .arrow-icon {
  transform: translateX(4px);
}

.about-ibai-image {
  height: 585px;
  width: fit-content;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 10px;
}

/* Fade-in animation to simulate isVisible */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-600 {
  animation-delay: 600ms;
}

.delay-800 {
  animation-delay: 800ms;
}

.delay-1000 {
  animation-delay: 1000ms;
}

.delay-1200 {
  animation-delay: 1200ms;
}

.report-glass-card h3 {
  font-size: 24px;
  padding-top: 10px;
}

.report-glass-card p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }
}

.bg-ibai-blue {
  background-color: #003087;
  /* Assuming ibai-blue is a dark blue */
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.social-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  height: 34px;
  width: 34px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.nav-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff;
  text-decoration: none;
}

.nav-link:hover .chevron {
  transform: translateX(4px);
}

.chevron {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  transition: transform 0.3s;
}

.footer {
  padding-top: 4rem;
  padding-bottom: 20px;
}

.footer-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.contact-info p {
  margin-bottom: 0.25rem;
}

.bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.bottom-links a:hover {
  color: #fff;
  text-decoration: none;
}

ul.contact-info p {
  font-size: 16px;
  color: white;
  font-weight: 500;
}

.footer-section ul li a {
  margin-left: 0px;
  color: white;
  font-size: 15px;
}

.footer-set1 p {
  font-size: 16px;
  font-weight: 400;
}

.footer-para p {
  font-size: 16px;
  color: white;
  font-weight: 400;
}

.bottom-links a {
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.contact-glass-card h4 {
  color: #0963ad;
}

/* contact style */
.bg-ibai-gray {
  background-color: #f7f7f7;
  /* Light gray background */
}

/* .bg-ibai-blue {
    background-color: #003087; 
  }
  .text-ibai-blue {
    color: #003087;
  } */
.bg-ibai-blue-10 {
  background-color: rgba(0, 48, 135, 0.1);
}

/* .text-ibai-blue-70 {
    color: rgba(0, 48, 135, 0.7);
  } */
.border-ibai-blue-20 {
  border-color: rgba(0, 48, 135, 0.2);
}

.focus-ring-ibai-blue-40 {
  box-shadow: 0 0 0 0.2rem rgba(0, 48, 135, 0.4);
}

.contact-glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-out;
  border-radius: 16px !important;
  box-shadow: 0px 1px 3px -1px lightgray;
}

.contact-glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-out;
  border-radius: 16px !important;
  box-shadow: 0px 1px 3px -1px lightgray;
  margin-bottom: 30px;
}

.contact-glass-panel:hover,
.contact-glass-card:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.section {
  padding: 5rem 0;
}

.contact-glass-card p {
  margin-bottom: 1px;
  font-size: 15px;
  color: darkslategray;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003087;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease-out;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(0, 48, 135, 0.7);
  margin-bottom: 3rem;
  transition: all 0.3s ease-out;
}

.badge-contact {
  display: inline-block;
  background-color: rgba(0, 48, 135, 0.1);
  color: #003087;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease-out;
}

.contact-form-cov .form-control {
  height: 47px;
  margin-top: 8px;
  border-radius: 10px;
}

.contact-form-cov .text-box {
  height: 100px !important;
  margin-top: 8px;
  border-radius: 10px;
}

.contact-form-cov label {
  font-size: 15px;
  margin-left: 7px;
}

.form-control:focus {
  border-color: rgba(0, 48, 135, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(0, 48, 135, 0.4);
}

/* .btn-primary {
    background-color: #003087;
    border-color: #003087;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease-out;
  }
  .btn-primary:hover {
    background-color: #002469;
    border-color: #002469;
    transform: translateY(-2px);
  } */
.contact-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 48, 135, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card-icon i {
  font-size: 1.5rem;
  color: #0963ad;
}

.map-container {
  height: 300px;
  border-radius: 0.75rem;
  overflow: hidden;
}

/* Animation for hover/focus */
.animate-on-hover {
  opacity: 0.7;
  transform: translateY(10px);
  transition: all 0.3s ease-out;
}

.animate-on-hover:hover,
.animate-on-hover:focus {
  opacity: 1;
  transform: translateY(0);
}

.report-glass-card-cov {
  padding: 22px;
}

.report-glass-card-box {
  display: flex;
  justify-content: center;
  width: 100%;
}

.report-glass-card-icon {
  background: aliceblue;
  height: 70px;
  padding: 18px;
  border-radius: 10px;
  margin-right: 13px;
}

.report-glass-card-inner-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

span.report-glass-card-inner-title {
  background: #e5eaf3;
  padding: 4px 14px;
  border-radius: 30px;
  color: #0963ad;
}

span.card-inner-date {
  color: #0963ad;
}

.report-glass-card-inner-cov h3 {
  font-weight: 600;
}

.report-glass-card-inner-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 13px;
  padding-top: 18px;
}

.report-glass-card-inner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.report-glass-card-inner-cov h3 {
  font-weight: 600;
  margin-bottom: 13px;
}

.report-glass-card-inner-bottom span {
  color: #0963ad;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.report-glass-card-cov {
  padding: 22px;
  height: 285px;
}

.report-glass-card-inner-bottom a {
  font-size: 12px;
  font-weight: 600;
  color: #0963ad;
}

.chart-container {
  width: 100%;
  height: 600px;
}

.swiper-wrapper {
  height: 400px !important;
}

.swiper-slide {
  border-radius: 20px !important;
  overflow: hidden !important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev';
  font-size: 16px !important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: 'next';
  font-size: 16px !important;

}

.swiper-slide img {
  width: 85% !important;
  border-radius: 20px !important;
  margin: 0 auto;
  display: flex;
}

.icon-circle.bg-ibai-blue-light {
  background: rgb(10 35 66 / 0.1);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 11px;
}

.card.busines-model-card {
  border-radius: 15px;
}
.card.busines-model-card p {
  font-size: 14px;
}
.card.history-card p {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.card.members-broker-card h5 {
  font-size: 19px;
  font-weight: 600;
  color: #0055a5 !important;
}

.training-main-cover-wrapper p {
  font-size: 15px;
  font-weight: 500;
}

.card.leadership-card-box {
  border-radius: 15px;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

  .hero-section {
    min-height: 100vh;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 68px;
  }

  .hero-main-title {
    font-size: 22px;
    font-weight: 600;
    color: #0055a5;
    margin-bottom: 17px;
    transition: all 1s ease-out 0.3s;
    margin-top: 19px;
    line-height: 22px;
  }

  .badge {
    display: inline-block;
    background-color: rgba(0, 85, 165, 0.1);
    color: #0055a5;
    border-radius: 999px;
    padding: 8px 22px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 2px;
    transition: all 1s ease-out;
    margin-top: 20px;
  }

  .hero-para {
    font-size: 10px;
    color: rgba(0, 85, 165, 0.8);
    max-width: 48rem;
    margin: 0 auto 2rem;
    transition: all 1s ease-out 0.5s;
  }

  .member-btn1 {
    background-color: #0055a5;
    border-color: #0055a5;
    color: #fff;
    padding: 9px 21px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    border-radius: 51px;
    font-weight: 600;
    font-size: 11px;
    padding: 9px 12px !important;
  }

  .learn-btn {
    color: #0055a5;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 13px;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1140px;
    padding: 0 15px;
    padding-bottom: 76px;
  }

  .stat-value {
    font-size: 20px;
    font-weight: bold;
    color: #0055a5;
  }

  .stat-label {
    font-size: 0.875rem;
    color: rgba(0, 85, 165, 0.7);
    font-size: 10px;
  }

  .glass-card {
    background: rgba(255, 255, 255, 0.8);
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    box-shadow: 0px 2px 3px -1px #f0eded;
    margin-bottom: 18px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 16px;
    margin-top: 35px;
    padding: 10px;
  }

  .glass-card p {
    font-size: 12px;
    margin-top: 2px;
    font-weight: 500;
  }

  .check-icon {
    width: 14px;
    height: 15px;
  }

  .mission-wraper-image-title {
    position: absolute;
    bottom: 0;
    background: linear-gradient(4deg, #000000a3, transparent);
    height: 138px;
    padding: 26px 17px;
    border-radius: 22px;
    width: 100%;
    font-size: 13px;
  }

  .about-ibai-image {
    height: 100%;
    width: fit-content;
    background-position: center;
    background-size: 100% 100%;
    border-radius: 10px;
  }

  .report-sect {
    margin-top: 100px;
  }

  .report-glass-card-box {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .report-glass-card-icon {
    background: aliceblue;
    height: 63px;
    padding: 18px;
    border-radius: 10px;
    margin-right: 13px;
    width: fit-content;
  }

  .file-icon {
    width: 25px;
    height: 25px;
    color: #0963ad;
  }

  .report-glass-card-inner-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 13px;
    padding-top: 16px;
    align-items: center;
  }

  .report-glass-card-inner-cov h3 {
    font-weight: 600;
    margin-bottom: 13px;
    font-size: 15px;
  }

  .report-glass-card-cov {
    padding: 22px;
    height: 100%;
  }

  .report-glass-card p {
    font-size: 11px;
  }

  .report-glass-card-inner-bottom span {
    color: #0963ad;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .report-glass-card-inner-bottom a {
    font-size: 12px;
  }

  .pub-btn {
    background-color: #0963ad;
    border-color: #0963ad;
    color: #fff;
    font-weight: 600;
    padding: 9px 17px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-size: 12px;
  }

  .contact-card-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 48, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .contact-card-icon i {
    font-size: 17px;
    color: #0963ad;
  }

  .contact-glass-card h4 {
    color: #0963ad;
    font-size: 20px;
  }

  .contact-glass-card p {
    margin-bottom: 1px;
    font-size: 13px;
    color: darkslategray;
  }

  .footer {
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .footer-para p {
    font-size: 15px;
    color: white;
    font-weight: 400;
    text-align: center;
  }

  .bottom-links a {
    color: white;
    font-size: 12px;
    font-weight: 400;
  }

  ul.contact-info p {
    font-size: 14px;
    color: white;
    font-weight: 500;
  }

  .footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 19px;
  }

  .footer-section ul li a {
    margin-left: 0px;
    color: white;
    font-size: 14px;
  }

  .footer-set1 p {
    font-size: 14px;
    font-weight: 400;
  }

  .contact-form-cov .form-control {
    height: 45px;
    margin-top: 8px;
    border-radius: 10px;
    font-size: 12px;
  }

  .chart-container {
    width: 100%;
    height: auto;
  }
}