


/* Prevent unwanted horizontal scroll */
html, body {
    overflow-x: hidden;
}

body {
  margin: 0;
  font-family:"Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding-top:116px;
}
 a{
  text-decoration: none;
 }

/* Navber start */
.top-header {
  background-color: white;
  padding: 0px 0;
}

.top-header .logo-text {
  font-size: 16px;
  line-height: 1.2;
}

.top-header .logo-subtext {
  font-size: 12px;
  color: gray;
}

.top-header .info-link {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 20px;
  color: #093f5e;
  text-decoration: none;
}

.top-header .info-link i {
  font-size: 16px;
  background: #f1f8ff;
  padding: 6px;
  border-radius: 50%;
  color: #093f5e;
}

.info-link:hover,
.info-link:hover i {
  color: red;
}

.online-btn {
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
  border-radius: 25px;
  color: #093f5e;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.online-btn:hover {
  border-color: #093f5e;
}

.main-navbar {
  background-color: #0b4261;
}

.main-navbar .nav-link {
  color: white !important;
  font-weight: 500;
  padding-right: 5px;
}

.bo-account-btn {
  background-color: #0b4261;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background-color 0.3s ease;
}

.bo-account-btn i {
  background-color: #2b88b3;
  padding: 4px;
  border-radius: 50%;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

.bo-account-btn:hover {
  background-color: #093f5e;
  color: #fff;
  text-decoration: none;
}

.bo-account-btn:hover i {
  background-color: red;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}
.why-choose-section .service-card{
  height: 350px;
}
.about-section .about-img{
  width: 75%;
}


@media (max-width: 992px) {
      /* Navbar */
 .main-navbar {
    max-height: 80vh; /* or 100vh minus header height */
    overflow-y: auto;
    overflow-x: hidden;
  }
  .navbar-toggler:focus {
    box-shadow: none;
}
    .view-all-btn {
    padding: 8px 18px!important;
}
.btn-custom {
    padding: 14px 12px!important;
    margin-bottom: 20px;
}
.service-card {
  padding: 10px!important;
}
.why-choose-section .service-card{
  height: auto;
}
.about-section {
    margin: 0px!important;
}
.about-section .about-img{
  width: 100%;
}
.query-section .btn-wrapper {
    flex-direction: column;
}
  body {
  padding-top:61px;
}
  .top-header .container {
    flex-direction: column;
    align-items: start;
  }

  .top-header .info-link {
    margin-left: 0;
    margin-top: 5px;
  }

  .main-navbar .container {
    flex-direction: column;
    align-items: start;
  }

  .main-navbar ul.nav {
    flex-direction: column;
    width: 100%;
  }

  .main-navbar .nav-link {
    padding: 10px 0;
  }

  .bo-account-btn {
    margin-top: 10px;
  }

}

/* Navber End */

/* Hero section */
.background {
  background-color: #d4f9ff;
}

/* card section Start */

.info-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-align: center;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.info-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.info-card h5 {
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}
.info-card p {
  color: #666;
  margin-bottom: 0;
}
section {
  padding: 60px 0;
}
/* card section End */

/* About Section Start */

.about-section {
  background: linear-gradient(135deg, #eef9ff);
  padding: 50px 20px;
  margin: 20px;
}

h2 {
  color: #1d3557;
}

.text-muted {
  font-size: 1rem;
  line-height: 1.7;
}

.btn-custom {
  background: linear-gradient(90deg, #ff6b6b, #f06595);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-custom:hover {
  background: linear-gradient(90deg, #f06595, #ff6b6b);
  transform: scale(1.05);
}

.text-gradient {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
}

.stats-section {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 30px 15px;
  }
}

/* About Section End */

/* Products & Services section start  */

.service-card {
  background: #ffff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  width: 60px;
  margin-bottom: 20px;
}
.learn-more {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-weight: 600;
  color: #003366;
  text-decoration: none;
}
.learn-more .circle {
  background: #e6f2fa;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}
.view-all-btn {
  border: 1px solid red;
  color: red;
  padding: 8px 20px;
  border-radius: 30px;
  background: transparent;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}
.view-all-btn:hover {
  background: red;
  color: #fff;
}
.nav-btns button {
  width: 40px;
  height: 40px;
  border: 1px solid #cbd5e0;
  border-radius: 50%;
  background: transparent;
  margin: 0 5px;
}

.truncate-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Products & Services section end  */

/* Why choose section Start  */

.why-choose-section {
  background-color: #eef9ff;
}

.card-title {
  font-weight: bold;
}

/* Testimonial Section Start  */

.testimonial-section {
  background-color: #0076b8; /* Blue background */
  color: white;
  padding: 80px 0;
}
.testimonial-content {
  max-width: 800px;
  margin: auto;
}
.testimonial-text {
  font-size: 1rem;
  margin-bottom: 30px;
}
.testimonial-person img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-person h5 {
  margin-top: 10px;
  margin-bottom: 2px;
  font-weight: 600;
}
.testimonial-person p {
  font-size: 0.9rem;
  color: #d1e7f5;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 40px 40px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* Board of directors card start */

.custom-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Custom styles for sub-dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Balance Inquery */

.card-custom {
  max-width: 700px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.section-title {
  color: #003366;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #003366;
  margin: 5px auto 15px;
}

.balance-label {
  font-weight: 600;
}

.btn-custom {
  background-color: #003366;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #003366;
}

/* Deposit */

.card-custom {
  max-width: 500px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: #003366;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #003366;
  margin: 5px auto 15px;
}

label {
  color: #003366;
  font-weight: 500;
}

.btn-custom {
  background-color: #003366;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #003366;
}

.history-title {
  text-align: center;
  color: #003366;
  font-weight: bold;
  margin-top: 50px;
}

.history-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #003366;
  margin: 5px auto 20px;
}

/* Latest IPO */

.section-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #003366;
}
.table thead th {
  background-color: #f2f2f2;
}
.learn-section {
  text-align: center;
  margin: 40px 0 20px;
  color: #003366;
}
.learn-section h5 {
  font-weight: bold;
  border-bottom: 2px solid #003366;
  display: inline-block;
  padding-bottom: 5px;
}
.info-list {
  max-width: 700px;
  margin: auto;
  color: #333;
}
.info-list li::before {
  content: "✔️";
  color: #003366;
  margin-right: 10px;
}

/* career */

/* utilities */

.drop-icon::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(50%);
  margin-right: 20px;
}

/* Custom css */
  /* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    z-index: 999;
    border-radius: 10%;
    padding: 5px 10px;
    background: #0b4261;
    color: #fff;
    font-size: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #042436;
    transform: translateY(-3px);
}


.fb-button {
    position: fixed;
    bottom: 145px;
    right: 20px;
    background-color: #0084ff;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Carousel */
.carousel-container {
    margin-top: 0;
    padding: 0;
}

.carousel-inner img {
    width: 100%;
    height: 82vh;
    object-fit: fill
}

.carousel-caption {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-caption h5 {
    color: #fff;
}

.carousel-caption p {
    color: #f8f9fa;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    z-index: 0;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-inner img {
        object-fit: fill;
        height: 228px;
    }
}

         /* Flash modal content styles */
    .flash-message-content {
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    /* Make images from TinyMCE responsive */
    .flash-message-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 10px auto;
        border-radius: 8px;
    }

    /* Handle iframes (YouTube, etc.) */
    .flash-message-content iframe {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 10px auto;
    }

    /* Tables from TinyMCE */
    .flash-message-content table {
        width: 100% !important;
        border-collapse: collapse;
    }

    .flash-message-content table td,
    .flash-message-content table th {
        padding: 6px;
        border: 1px solid #ddd;
        word-break: break-word;
    }

    body.modal-open,
    body.modal-open .fixed-top,
    body.modal-open .fixed-bottom,
    body.modal-open .sticky-top {
        padding-right: 0 !important;
    }


/* Query section */
  .query-section h2 {
        font-weight: 600;
        font-size: 38px;
        line-height: 48px;
        color: #093f5e;
        margin-bottom: 24px;
        font-family: "Poppins", sans-serif;
    }

    .query-section .detail {
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .form-select,
    .form-control,
    form textarea {
        background: #f1f8fc;
        border: 1px solid rgba(13, 89, 132, 0.12);
        box-sizing: border-box;
        border-radius: 8px;
        min-height: 50px;
        padding: 12px 20px;
        color: #093f5e;
    }

    .form-control:active,
    .form-control:focus {
        background-color: #fff;
        border: 1px solid #0d5984;
        outline: 0;
        box-shadow: none;
    }

    .query-section .btn-wrapper {
        font-family: Barlow;
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

/* <!-- Footer Custom Styles --> */
    .footer-link {
       color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.3s ease, text-decoration 0.3s ease;
    }

    .footer-link:hover {
        color: #00BFFF;
        text-decoration: underline;
    }









