@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

/* Reset basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fredoka", sans-serif;
  padding-top: 80px; /* pushes content below navbar */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
span,
li {
  font-family: "Fredoka", sans-serif;

}


/* NAVBAR STYLING */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}



/* BRAND LOGO */
.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: rgb(0, 60, 255);
}

.navbar-brand img {
  width: 240px;
  height: 40px;
  margin-right: 12px;
}


/* NAV LINKS */
.navbar-nav .nav-link {
  color: #333;
  font-weight: 600;
  padding: 10px 15px;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: rgb(0, 60, 255);
}

/* DROPDOWN MENU */
.dropdown-menu {
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: none;
  animation: fadeDown 0.3s ease-in-out;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background-color: #f8f8f8;
  color: rgb(0, 60, 255);
}

/* LIVE TV BUTTON */
.btn-primary {
  background-color: rgb(0, 60, 255);
  border-color: rgb(0, 60, 255);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: rgb(0, 60, 255);
  border-color: rgb(0, 60, 255);
}

/* NAVBAR TOGGLER (MOBILE ICON) */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234B0082' viewBox='0 0 30 30'%3E%3Cpath d='M4 7h22M4 15h22M4 23h22' stroke='%234B0082' stroke-width='2'/%3E%3C/svg%3E");
}

/* MOBILE RESPONSIVE SPACING */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding: 12px 10px;
  }

  .navbar-brand img {
    width: 160px;
    height: 30px;
  }

  .btn-primary {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    box-shadow: none;
  }
}

/* Show dropdown on hover for large screens */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeDown 0.3s ease-in-out;
    margin-top: 0.5rem;
  }

  /* Optional: Add arrow rotation effect */
  .navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Hide default Bootstrap dropdown arrow */
.dropdown-toggle::after {
  display: none !important;
}



/* Hero Section */
.leadership-hero {
  background-image: url('./34.jpg');
  background-size: cover;
  background-position: center;
  height: 450px;
  position: relative;
}

.overlay {
  background: rgba(0, 60, 255, 0.6);
  /* Purple overlay */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  padding-top: 40px;
}

.content {
  z-index: 2;
  align-items: center;
  flex-direction: column;
  display: flex;
  gap: 12px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
  text-align: center;

}

.breadcrumb {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
}

.breadcrumb .separator {
  margin: 0 8px;
  opacity: 0.7;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Cross Icon Circle */
.icon-circle {
  width: 140px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -35px;
  z-index: 3;
}

.icon-circle img {
  width: 150px;
  height: 180px;
  object-fit: contain;
  /* filter: drop-shadow(0 0 2px white); */
  filter:
    drop-shadow(0 0 0 white)
    /* base edge */
    drop-shadow(0 0 1px white) drop-shadow(0 0 2px white) drop-shadow(0 0 3px white) drop-shadow(0 0 4px white);
}

@media (max-width: 768px) {
  .leadership-hero {
    height: 300px;
  }

  h1 {
    font-size: 36px;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .icon-circle {
    width: 65px;
    height: 65px;
    bottom: -32px;
  }

  .icon-circle img {
    width: 35px;
    height: 35px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .leadership-hero {
    height: 260px;
  }

  h1 {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    bottom: -30px;
  }

  .icon-circle img {
    width: 30px;
    height: 30px;
  }
}


/* Section layout */
.bank-section {
  padding: 120px 20px 60px; /* top | left/right | bottom */
  background: #fff url('pattern-bg.png') no-repeat center center/cover;
}


.bank-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Text column */
.bank-details {
  flex: 1;
  min-width: 300px;
  padding-top: 10%;
}

.bank-details .subtitle {
  color: #2600ffff;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}

.bank-details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bank-details .line {
  width: 40px;
  height: 3px;
  background: #2f00ffff;
  margin: 15px 0;
  border-radius: 2px;
}

.bank-details p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.bank-details strong {
  font-weight: 600;
}

/* Image column */
.bank-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bank-image img {
  max-width: 400px;
  height: auto;
  padding-top: 15%;
}

/* Responsive */
@media (max-width: 900px) {
  .bank-container {
    flex-direction: column;
    text-align: left;
  }

  .bank-image {
    margin-top: 40px;
  }
}


/* Tablet screens */
@media (max-width: 768px) {
  .bank-section {
    padding: 80px 15px 40px;
  }

  .bank-details {
    padding-top: 20px;
  }

  .bank-details h2 {
    font-size: 22px;
  }

  .bank-details p {
    font-size: 14px;
  }

  .bank-image img {
    max-width: 280px;
    padding-top: 20px;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .bank-section {
    padding: 60px 10px 30px;
  }

  .bank-details {
    padding-top: 10px;
  }

  .bank-details .subtitle {
    font-size: 12px;
  }

  .bank-details h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .bank-details p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .bank-image img {
    max-width: 220px;
    padding-top: 10px;
  }
}


@media (max-width: 768px) {
  body {
    padding-top: 100px; /* extra space for taller navbar on mobile */
  }
}

@media (max-width: 768px) {
  .leadership-hero {
    min-height: 50vh;
  }
}



.site-footer {
  background-color: rgb(0, 60, 255);
  color: #fff;
  padding: 25px 20px;
  font-size: 14px;
}

.footer-inline {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.footer-social a {
  color: #ccc;
  font-size: 18px;
  margin: 0 8px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  color: #aaa;
}

/* Responsive: stack icons below text on small screens */
@media (max-width: 600px) {
  .footer-inline {
    flex-direction: column;
    gap: 10px;
  }
}
