body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top right, #0f172a, #0a0a18);
  color: #fff;
  overflow-x: hidden;
}

.navbar {
  background-color: #ffffff;
  padding: 1rem 0;
}

.navbar-brand span {
  color: #f97316;
}

.navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #f97316;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.Fidelium-logo{
  height: 50px;
}

.hero-section {
  padding: 120px 0;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-section p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.btn-one {
  background-color: #f97316;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-one:hover {
  background-color: #ea580c;
}

.btn-two {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-two:hover {
  background-color: white;
  color: #0f172a;
}

.animated-img {
  width: 100%;
  max-width: 100%;
  animation: floatUpDown 1.5s ease-in-out infinite alternate;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3); /* soft outer glow to blend with dark bg */
  background-color: transparent;
  mix-blend-mode: lighten; /* optional: helps blend edges into dark backgrounds */
  transition: all 1s ease-in-out;
}


@keyframes floatUpDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .navbar-collapse {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-top: 0.5rem;
  }
  .navbar-collapse {
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
  }
  .Fidelium-logo{
    height: 43px;
  }
  .hero-section .row {
    flex-direction: column-reverse;
  }

  .hero-section h1{
    font-size: 30px;
  }

  .hero-section h1,
  .hero-section p {
    text-align: left;
    margin: 20px;
  }

  .hero-section .btn-one,
  .hero-section .btn-two {
    text-align: left;
    display: inline-block;
    margin-left: 20px;
  }

  .hero-section .d-flex {
    justify-content: flex-start !important;
  }
}

/* Number Counter Section */
.stats-section {
  background-color: #ffffff;
  color: #0f172a;
  padding: 100px 0;
}

.stats-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.stats-section p {
  color: #555;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #f97316;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 25px;
  height: 100%;
  text-align: left;
}

.feature-card h5 {
  color: #0f172a;
  font-weight: 600;
}

.feature-card p {
  color: #555;
}

.feature-section {
  background: #f8f9fa;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .stats-section .row,
  .feature-section .row {
    flex-direction: column-reverse;
  }

  .feature-section .row {
    flex-direction: column;
  }
}

.feature-box {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-box:last-child {
    border-right: none;
}
.feature-box i {
    font-size: 40px;
    margin-bottom: 10px;
}
.feature-box p{
    color: #bbb;
}
.feature-box h4{
  color: #000;
}

.hover-zoom {
  transition: transform 0.5s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
}

.choose-section .feature-card {
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  background: #ffffff;
  padding: 20px;
  height: 100%;
  transition: all 0.3s;
}

.choose-section .feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Layered */

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

.main-img {
  width: 90%;
  max-width: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.small-img {
  position: absolute;
  width: 190px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.top-left {
  top: -70px;
  left: -80px;
}

.bottom-right {
  bottom: -70px;
  right: -80px;
}

.hover-zoom {
  transition: transform 0.4s ease;
}

.hover-zoom:hover {
  transform: scale(1.08);
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .image-wrapper {
    max-width: 320px;
    width: 100%;
    margin-bottom: 30px;
  }

  .main-img {
    width: 100%;
  }

  .small-img {
    width: 100px;
  }

  .top-left {
    top: -20px;
    left: -5px;
  }

  .bottom-right {
    bottom: -20px;
    right: -5px;
  }
}



/* CTA Section */

.cta-section {
  background: linear-gradient(to right, #0f172a, #1a1a2e);
  color: white;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f97316;
}

.cta-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
}

.dashboard-preview {
  width: 100%;
  max-width: 500px;
  transition: transform 0.5s ease;
}

.dashboard-preview:hover {
  transform: scale(1.03);
}

.btn-cta-primary {
  background-color: #f97316;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background-color: #ea580c;
  transform: scale(1.05);
}

.btn-cta-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: #fff;
  color: #0f172a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 2rem;
  }
}




















/* about page */

.about-hero {
  position: relative;
  height: 50vh;
  background: url('images/about-image.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.who-we-are-section{
  margin: 40px 0 40px 0;
}

.lead{
  color: #fff;
  font-size: 16px;
}

.about-hero .overlay {
  background: rgba(255, 132, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.about-hero:hover .overlay {
  transform: scale(1.08);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #fff;
  animation: typing 3.5s steps(30, end), blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: white; }
}

.image-wrapper {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
}


.hover-zoom {
  transition: transform 0.4s ease;
}

.hover-zoom:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {

  .about-hero {
    height: auto;
    padding: 80px 0;
  }

  .typewriter {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}



/* services page */

.services-hero {
  position: relative;
  height: 50vh;
  background: url('images/services.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero .overlay {
  background: rgba(255, 132, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.services-hero:hover .overlay {
  transform: scale(1.08);
}

.services-hero .container {
  position: relative;
  z-index: 2;
}


/* Cards */
.card {
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body i{
  color: #f97316;
}




/* online banking page */

.online-banking-hero {
  position: relative;
  height: 50vh;
  background: url('images/online-bank-image.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.online-banking-hero .overlay {
  background: rgba(255, 132, 0, 0.434);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.online-banking-hero:hover .overlay {
  transform: scale(1.08);
}

.online-banking-hero .container {
  position: relative;
  z-index: 2;
}

.online-banking-features {
  color: #fff;
  padding: 50px 0;
}

.online-banking-features h2 {
  margin-bottom: 20px;
}

.online-banking-features ul {
  list-style: none;
  padding: 0;
}

.online-banking-features ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

.online-banking-features ul li i {
  color: #f97316;
  margin-right: 10px;
  font-size: 20px;
}

.cta {
  background: #f97316;
  color: white;
  padding: 50px 0;
}

.cta a {
  margin-top: 20px;
}






/* careers page */

.career-hero {
  position: relative;
  height: 50vh;
  background: url('images/services.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.career-hero .overlay {
  background: rgba(255, 132, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.career-hero:hover .overlay {
  transform: scale(1.08);
}

.career-hero .container {
  position: relative;
  z-index: 2;
}

.why-join-us {
  background: #0c0f1f;
  color: #e2e8f0;
}

.why-join-us p {
  color: #94a3b8;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.benefit-list li i {
  color: #f97316;
  margin-right: 10px;
  font-size: 20px;
}

/* Job Cards */
.job-openings {
  background: #111827;
}

.job-openings h2 {
  color: #ffffff;
}

.job-card {
  background-color: #1e293b;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.job-card h4 {
  color: #f97316;
  margin-bottom: 10px;
}

.job-card p {
  color: #cbd5e1;
  font-size: 14px;
}

.btn-apply {
  background-color: #f97316;
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-apply:hover {
  background-color: #ea580c;
}







/* FAQs page */

.faq-hero {
  position: relative;
  height: 50vh;
  background: url('images/faq.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faq-hero .overlay {
  background: rgba(255, 132, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.faq-hero:hover .overlay {
  transform: scale(1.08);
}

.faq-hero .container {
  position: relative;
  z-index: 2;
}

/* FAQs Section */
.faqs {
  background: #0f172a;
  color: #fff;
}

.faqs h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.accordion-item {
  background-color: #1e293b;
  border: none;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.accordion-button {
  background-color: #1e293b;
  color: #f8fafc;
  font-weight: 600;
  padding: 16px;
}

.accordion-button:not(.collapsed) {
  background-color: #f97316;
  color: #ffffff;
}

.accordion-body {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 20px;
  font-size: 15px;
}

/* Remove accordion borders */
.accordion-button:focus {
  box-shadow: none;
}

/* Contact Support */
.contact-support {
  padding: 60px 0;
  background: #f97316;
  color: #fff;
}

.contact-support h2 {
  font-size: 2rem;
  font-weight: 700;
}

.contact-support p {
  font-size: 1rem;
  color: #fff;
}

.contact-support .btn-outline-light {
  border: 2px solid #fff;
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-support .btn-outline-light:hover {
  background: #fff;
  color: #f97316;
}













































/* privacy policy page */

.privacy-hero {
  position: relative;
  height: 60vh;
  background: url('images/privacy.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.privacy-hero .overlay {
  background: rgba(255, 132, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.privacy-hero:hover .overlay {
  transform: scale(1.08);
}

.privacy-hero .container {
  position: relative;
  z-index: 2;
}

.privacy-hero p{
  color: #fff;
}

.privacy-policy {
  padding: 40px 0;
}

.privacy-policy h2, li{
  color: #fff;
}
.privacy-policy p{
  color: #fff;
}

.privacy-policy h3 {
  margin-top: 20px;
  color: #f97316;
}



























/* contact Page */

.contact-hero {
  position: relative;
  height: 50vh;
  background: url('images/contact2.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero .overlay {
  background: rgba(255, 132, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

.contact-hero:hover .overlay {
  transform: scale(1.08);
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero p{
  color: #fff;
}

.contact-info {
  padding: 40px 0;
  color: #fff;
}
.contact-info p{
  color: #fff;
}

.contact-form h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-icon {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 10px;
}

.contact-form {
  color: #fff;
  padding: 40px 0;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}


































/* footer */

.footer {
  background-color: #fff;
  padding: 40px 0;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
.footer a {
  color: #000;
  text-decoration: none;
}
.footer a:hover {
  color: rgb(234, 150, 65);
}
.social-icons a {
  font-size: 20px;
  margin-right: 10px;
}

.nav-images img{
  width: 100px;
  padding: 0;
}

.footer .text-center p{
  color: #000;
}

.footer h5, p{
  color: #000;
}
