* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'inter';
    }

    .header-wrapper {
      position: relative;
    }

   
    .floating-logo {
      position: absolute;
      top: 10px;
      left: 30px;
      height: 150px;
      width: 180px;
      z-index: 10;
    }

    header {
      background-color: #ffffff;
      padding: 20px 40px 20px 140px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      border-bottom: 1px solid transparent;
    }
    .top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  margin-left: 200px; 
}


    .top-nav a {
      text-decoration: none;
      color: #000;
      font-weight: bold;
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      
    }

    .top-actions input {
      padding: 5px 10px;
      border-radius: 20px;
      border: 1px solid #ccc;
    }

    .top-actions button {
      padding: 6px 15px;
      background-color: #0d1a6e;
      color: white;
      border: none;
      border-radius: 20px;
      cursor: pointer;
    }

    
    .curve-container {
      display: flex;
    }

    .curve-space {
      width: 140px;
      background: #ffffff;
    }
.main-banner {
  background: #0d1a6e;
  color: white;
  padding: 30px 20px;
  border-top-left-radius: 200px;
  text-align: center;
  width: 80%;       
  margin-left: auto;  
  height: 90px;
}

    .main-banner h1 {
      font-size: 20px;
      line-height: 1.5;
    }

  
    .subnav {
      background-color: #002366;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
    }

    .subnav-left,
    .subnav-right {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 15px;
    }

    .subnav a {
      color: white;
      text-decoration: none;
      font-size: 14px;
      position: relative;
    }

    .subnav a::after {
      content: " ▼";
      font-size: 10px;
    }

    .subnav .cyber-btn {
      background-color: #00c853;
      padding: 6px 14px;
      color: white;
      border-radius: 20px;
      font-weight: bold;
    }
    .hero {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 40px;
      background: #f9f9f9;
      overflow: hidden;
      flex-wrap: wrap;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: -50px;
      left: -120px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle at top left, #e4e0ff, transparent);
      border-radius: 50%;
      z-index: 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      bottom: -60px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle at bottom right, #e4e0ff, transparent);
      border-radius: 50%;
      z-index: 0;
    }

    .hero-text {
      flex: 1;
      z-index: 1;
    }

    .hero-text h1 {
      font-size: 40px;
      margin-bottom: 20px;
      color: #111;
      font-weight: 'semi-bold';
    }

    .hero-text p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #444;
      font-weight: medium;
    }

    .hero-text button {
      padding: 12px 24px;
      background-color: #0d1a6e;
      color: #fff;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .hero-text small {
      display: block;
      margin-top: 10px;
      font-size: 12px;
      color: gray;
      font-weight: 500;
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      z-index: 1;
      overflow: hidden;
    }

    .hero-image img {
      max-width: 100%;
      width: 400px;
      border-radius: 30px;
      object-fit: contain;
      display: block;
    }


    /* -------- NOTICE BAR -------- */
    .notice-bar {
      background: white;
      font-size: 12px;
      font-weight: 700;
      padding: 10px 20px;
      text-align: center;
      overflow-x: auto;
      white-space: nowrap;
      color: #222;
    }
     .banking-section {
      position: relative;
      padding: 60px 20px;
      background: #f4f4f4;
      overflow: hidden;
      animation: fadeInUp 0.7s ease-in-out;
    }

    .banking-section::before,
    .banking-section::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, #dedede 10%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .banking-section::before {
      top: 20px;
      left: -100px;
    }

    .banking-section::after {
      bottom: 20px;
      right: -100px;
    }

    .heading h2 {
      text-align: center;
      color: #0047AB;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 50px;
      z-index: 2;
      position: relative;
      animation: slideInDown 0.5s ease-in-out;
    }

    .grid-container {
      display: flex;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      position: relative;
      z-index: 2;
      padding: 20px 50px;
    }

    .card {
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
      padding: 20px;
      transition: transform 0.3s ease;
      animation: fadeInUp 0.6s ease;
      width: 310px;
      height: 250px;
    }

    .card:hover {
      transform: translateY(-5px);
    }
    .card1 {
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
      padding: 20px;
      transition: transform 0.3s ease;
      animation: fadeInUp 0.6s ease;
      width: 557px;
      height: 250px;
    }
    .card1:hover {
      transform: translateY(-5px);
    }

    .box {
      height: 49px;
      width: 310px;
      background: linear-gradient(#8f8f8f33, #f5f5f5);
      display: flex;
      justify-content: center;
      align-items: center;
      border-top-right-radius: 14px;
      border-top-left-radius: 14px;
      margin: -20px -20px 20px -20px;
    }
     .box1 {
      height: 49px;
      width: 557px;
      background: linear-gradient(#8f8f8f33, #f5f5f5);
      display: flex;
      justify-content: center;
      align-items: center;
      border-top-right-radius: 14px;
      border-top-left-radius: 14px;
      margin: -20px -20px 20px -20px;
    }


    .box h3 {
      font-size: 18px;
      font-weight: bold;
      color: #000;
      margin: 0;
    }

    .icon-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 20px;
    }

    .item {
      flex: 1 1 45%;
      text-align: center;
    }

    .item img {
      width: 40px;
      margin-bottom: 8px;
    }

   .solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* ✅ 2 per row */
  gap: 20px;
}

.solution {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  
}


    .solution img {
      width: 35px;
    }

    .solution strong {
      display: block;
      color: #000;
    }

    .solution a {
      color: #0047AB;
      font-size: 14px;
      text-decoration: none;
    }

    .account-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .account-box {
      background: #f1f3f5;
      border-radius: 10px;
      padding: 15px;
      flex: 1 1 45%;
    }

    .account-box h4 {
      font-size: 16px;
      color: #000;
      margin: 0 0 5px;
    }

    .account-box p {
      margin: 0 0 10px;
    }

    .account-box a {
      color: #0047AB;
      font-size: 14px;
      text-decoration: none;
    }

    .account-box img {
      width: 25px;
      float: right;
      margin-top: -25px;
    }

    .news-list {
      padding-left: 20px;
    }

    .news-list li {
      font-size: 14px;
      margin-bottom: 10px;
    }

    h3 {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 700;
      color: #000;
    }
     @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.bonuses-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  background-color: #D9D9D9;
}

.bonuses-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, #d6d1eb 0%, transparent 70%);
  z-index: 0;
  opacity: 0.4;
}

.bonuses-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.subheading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #333;
  z-index: 1;
  position: relative;
}

/* Bonus Card Layout */
.bonus-card {
  max-width: 960px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 30px;
  z-index: 1;
  position: relative;
}

.bonus-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 30px;
  position: relative;
}

.tab.active {
  color: #000;
  border-bottom: 3px solid #c92c2c;
  padding-bottom: 4px;
}

.bonus-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.bonus-text {
  flex: 1;
  text-align: left;
}

.bonus-text h4 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
}

.features {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.feature img {
  height: 40px;
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}

.feature:hover img {
  transform: scale(1.1);
}

.feature p {
  text-align: center;
  font-weight: 500;
  margin-top: 8px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.apply-btn {
  background: #002b87;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #001d5c;
}

.bonus-card-image {
  flex: 1;
  text-align: center;
}

.bonus-card-image img {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.investment-section {
  padding: 60px 20px;
  background: #F5F5F5;
  position: relative;
}

.investment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, #e4d8ec 0%, transparent 70%);
  z-index: 0;
  opacity: 0.3;
}

.investment-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.investment-section h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.investment-section p {
  color: #333;
  margin-bottom: 40px;
  font-size: 16px;
}

.loan-cards {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.loan-card {
  text-align: center;
  min-width: 140px;
}

.loan-card img {
  height: 50px;
  margin-bottom: 10px;
}

.loan-card .rate {
  font-size: 18px;
  font-weight: 600;
}

.loan-card .type {
  font-size: 14px;
  color: #555;
}

.view-all {
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  margin-top: -30px;
  margin-bottom: 20px;
}

.investment-section .learn-btn {
  margin-top: 30px;
  padding: 10px 24px;
  border: none;
  border-radius: 20px;
  background: #002b87;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.investment-section .learn-btn:hover {
  background: #001d5c;
}

/* ------------------- Mission Section ------------------- */
.mission-section {
  background: linear-gradient(to right, #e8ebf5, #f5f7fb);
  padding: 60px 20px;
  border-top: 5px solid transparent;
  text-align: center;
  position: relative;
}

.mission-section .container {
  max-width: 1100px;
  margin: auto;
  z-index: 2;
  position: relative;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('your-icons/mission-bg-pattern.png') center/cover no-repeat;
  opacity: 0.05;
}

.mission-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mission-section p {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.mission-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.mission-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 280px;
  transition: transform 0.3s ease;
}

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

.mission-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mission-card .content {
  padding: 20px;
}

.mission-card .content h4 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.mission-card .content p {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
}

.mission-card .content a {
  font-size: 14px;
  color: #002b87;
  font-weight: 600;
  text-decoration: none;
}

.mission-section .explore-btn {
  margin-top: 40px;
  padding: 10px 24px;
  border-radius: 20px;
  background: #002b87;
  color: white;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mission-section .explore-btn:hover {
  background: #001d5c;
}
.future-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  background-color: #F5F5F5;
}

.future-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  z-index: 1;
  position: relative;
}

.future-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.future-box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.app-buttons img {
  height: 40px;
  margin: 0 10px;
}
.footer {
      background-color: white;
      padding: 40px 60px;
      color: #333;
    }

    .footer .sections {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .footer .section {
      flex: 1 1 200px;
      margin: 10px;
    }

    .footer h4 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #000;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul li a {
      text-decoration: none;
      color: #333;
      transition: color 0.3s;
    }

    .footer ul li a:hover {
      color: #007BFF;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }

    .social-icons a {
      text-decoration: none;
      color: #fff;
      background-color: #525252;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 10px;
      transition: background-color 0.3s;
    }

    .social-icons a:nth-child(2) { background-color: #525252; }
    .social-icons a:nth-child(3) { background-color: #525252; }
    .social-icons a:nth-child(4) { background-color: #525252; }

    .social-icons a:hover {
      opacity: 0.8;
    }

    .footer-bottom {
      text-align: center;
      font-size: 14px;
      color: #666;
    }

    .footer-bottom a {
      color: #666;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #000;
    }
    .main-account-section {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 40px 60px;
      background-color: #ffffff;
    }

    .account-info {
      width: 55%;
    }

    .account-info h2 {
      color: #003366;
      font-size: 20px;
      margin-bottom: 8px;
      margin-top: 25px;
    }

    .account-info p {
      font-size: 16px;
      line-height: 1.5;
      color: #333;
      margin-bottom: 10px;
    }

    .image-section {
      width: 40%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-section img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .loan-section-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .loan-image-box {
      flex: 1 1 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .loan-image-box img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .loan-grid-section {
      flex: 2 1 600px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .loan-box {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      transition: box-shadow 0.3s ease;
    }

    .loan-box:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .loan-box h3 {
      font-size: 18px;
      color: #003366;
      margin-bottom: 10px;
    }

    .loan-box p {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
    }


    .locker-wrapper {
      display: flex;
      flex-wrap: wrap;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .locker-text {
      flex: 1 1 50%;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 40px;
    }

    .locker-box {
      background-color: #f9f9f9;
      border-left: 5px solid #003366;
      padding: 20px 25px;
      border-radius: 6px;
    }

    .locker-box h2 {
      color: #003366;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .locker-box p {
      color: #333;
      font-size: 15px;
      line-height: 1.5;
    }

    .locker-image {
      flex: 1 1 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
    }

    .locker-image img {
      max-width: 100%;
      height: auto;
      border-radius: 0 10px 10px 0;
    }
    .services-grid-section {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      background-color: #fff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 12px rgba(0,0,0,0.08);
    }

    .service-box {
      background-color: #ffffff;
      border: 1px solid #ddd;
      padding: 25px;
      border-radius: 8px;
      transition: box-shadow 0.3s ease;
    }

    .service-box:hover {
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .service-box h3 {
      font-size: 18px;
      color: #003366;
      margin-bottom: 10px;
    }

    .service-box p {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
    }
    .digital-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .digital-left {
      flex: 1;
    }

    .digital-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    .digital-box {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 24px 20px;
      transition: transform 0.3s ease;
    }

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

    .digital-title {
      font-size: 18px;
      font-weight: 600;
      color: #004080;
      margin-bottom: 10px;
    }

    .digital-desc {
      font-size: 14px;
      color: #333;
      line-height: 1.5;
    }

    .digital-right {
      flex-shrink: 0;
    }

    .digital-right img {
      width: 320px;
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .insurance-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  gap: 40px;
  justify-content: space-between;
}

.insurance-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insurance-item h2 {
  margin: 0;
  font-size: 18px;
  color: #000E68;
}

.insurance-item p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.insurance-image {
  flex: 1 1 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.link-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 30px;
}

.link-left {
  flex: 1 1 60%;
}

.link-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-column a {
  text-decoration: none;
  color: #004080;
  font-size: 15px;
  transition: color 0.2s;
}

.link-column a:hover {
  color: #0077cc;
  text-decoration: underline;
}

.link-right {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
}

.link-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.banner img {
  width: 100%;
}
.tab-section {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}

.tab-sidebar {
  width: 260px;
  background-color: #eaeef4;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.tab-link {
  padding: 14px 20px;
  border: none;
  background: none;
  text-align: left;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
}

.tab-link:hover,
.tab-link.active {
  background-color: #d0d8e6;
  font-weight: 600;
  color: #002f5f;
}

.tab-content-area {
  flex: 1;
  padding: 30px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.chairman-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.chairman-box img {
  width: 120px;
  height: 160px;
  border-radius: 6px;
  margin-right: 20px;
  object-fit: cover;
}

.chairman-name {
  font-size: 16px;
  font-weight: bold;
  color: #004080;
}

.chairman-name span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  color: #444;
}
.contact-section {
  width: 100%;
  background-color: #f6f6f6;
}

.contact-header {
  text-align: center;
  background: #001f4d;
  color: white;
  padding: 20px;
}

.contact-header p {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-icons {
  max-width: 100%;
  height: auto;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  background-color: #001f4d;
  color: white;
  padding: 25px;
}

.contact-left h2 {
  margin-bottom: 15px;
}

.contact-left p {
  margin: 10px 0;
}

.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: orange;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 25px;
}

.contact-right h2 {
  color: #001f4d;
  border-bottom: 3px solid orange;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right input,
.contact-right textarea {
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.contact-right button {
  background-color: orange;
  color: white;
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.contact-right button:hover {
  background-color: #e69500;
}
.about-section {
  width: 100%;
  background-color: #fff;
}

.about-header img {
  width: 100%;
  height: auto;
  display: block;
}

.about-container {
  display: flex;
  flex-direction: row;
  padding: 20px 40px;
  gap: 30px;
}

.tabs {
  flex: 1;
  max-width: 250px;
  display: flex;
  flex-direction: column;
}

.tab-button {
  padding: 15px;
  text-align: left;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.tab-button.active {
  color: #001f4d;
  font-weight: bold;
  border-left: 3px solid #001f4d;
  background-color: #f5f5f5;
}

.tab-content {
  flex: 3;
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  color: #001f4d;
  font-size: 20px;
}

.orange-line {
  width: 40px;
  height: 3px;
  background-color: orange;
  margin: 10px 0;
}

.tab-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.history-section {
  padding: 40px 60px;
  background-color: white;
}

.history-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.history-image img {
  width: 350px;
  height: 400px;
  border: 4px solid transparent; 
  border-radius: 5px;
}

.history-text {
  max-width: 600px;
}

.history-text h2 {
  font-size: 28px;
  color: #0b5ed7;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.history-text h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: orange;
  bottom: -6px;
  left: 0;
}

.history-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #6c757d;
}

    @media (max-width: 768px) {
      .floating-logo {
        height: 60px;
        left: 20px;
      }

      header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 20px 100px;
        gap: 15px;
      }

      .top-nav,
      .subnav-left,
      .subnav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .top-actions {
        width: 100%;
        justify-content: space-between;
      }

      .curve-container {
        flex-direction: column;
      }

      .curve-space {
        width: 100%;
        height: 20px;
      }

      .main-banner {
        border-radius: 0 0 40px 40px;
      }

      .main-banner h1 {
        font-size: 18px;
      }
       .hero {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
      }

      .hero-text h1 {
        font-size: 28px;
      }

      .hero-image img {
        width: 100%;
        max-width: 300px;
      }
      .banking-section {
        padding: 30px 15px;
      }

      .heading h2 {
        font-size: 20px;
      }

      .grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .account-box {
        flex: 1 1 100%;
      }

      .solution-grid {
    grid-template-columns: 1fr;
  }
  .bonuses-section {
    padding: 40px 15px;
  }

  .bonus-tabs {
    gap: 15px;
    font-size: 14px;
    justify-content: space-around;
  }

  .bonus-content {
    flex-direction: column;
    align-items: center;
  }

  .bonus-text {
    text-align: center;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .bonus-card-image img {
    max-width: 90%;
  }

  .loan-cards, .mission-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .loan-card, .mission-card {
    width: 90%;
    margin: auto;
  }

  .explore-btn, .learn-btn {
    width: 90%;
    padding: 12px;
  }

  .mission-card img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .mission-card .content {
    padding: 10px;
  }
  .footer {
  background: #fff;
  padding: 40px 20px;
  font-size: 14px;
  border-top: 1px solid #ccc;
  color: #222;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  max-width: 1000px;
  margin: auto;
}

.footer-column {
  flex: 1 1 150px;
  margin: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 12px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.footer-icons img {
  height: 20px;
  cursor: pointer;
}

  .bonus-content,
  .loan-cards,
  .mission-cards,
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .bonus-text,
  .mission-card .content,
  .footer-column {
    text-align: center;
  }

  .loan-card,
  .mission-card,
  .future-box {
    width: 100%;
  }

  .buttons,
  .features,
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-icons {
    gap: 10px;
  }
      .main-account-section {
        flex-direction: column;
        padding: 30px;
      }

      .account-info, .image-section {
        width: 100%;
      }

      .account-info h2 {
        font-size: 18px;
      }
       .loan-grid-section {
        grid-template-columns: repeat(2, 1fr);
      }

      .loan-section-wrapper {
        flex-direction: column;
      }
       .locker-wrapper {
        flex-direction: column;
      }

      .locker-image img {
        border-radius: 0 0 10px 10px;
      }

      .locker-text {
        padding: 30px 20px;
      }
      .services-grid-section {
        grid-template-columns: repeat(2, 1fr);
      }
      .digital-section {
        flex-direction: column;
        padding: 0 12px;
        gap: 24px;
      }

      .digital-grid {
        grid-template-columns: 1fr;
      }

      .digital-box {
        padding: 20px 16px;
      }

      .digital-title {
        font-size: 16px;
      }

      .digital-desc {
        font-size: 13px;
      }

      .digital-right img {
        width: 90%;
        margin: 0 auto;
        display: block;
      }
      .insurance-section {
    flex-direction: column;
    padding: 20px;
  }

  .insurance-image {
    margin-top: 20px;
  }
  .link-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .link-grid {
    flex-direction: column;
  }

  .link-right {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }

  .link-right img {
    width: 90%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
  }
  .tab-section {
    flex-direction: column;
  }

  .tab-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }

  .tab-link {
    flex: 1;
    white-space: nowrap;
    border-right: 1px solid #ccc;
  }

  .tab-content-area {
    padding: 20px;
  }
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    padding: 20px;
  }

  .contact-icons {
    height: auto;
  }
   .about-container {
    flex-direction: column;
    padding: 15px;
  }

  .tabs {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 10px;
    overflow-x: auto;
  }

  .tab-button {
    flex: 1 0 auto;
    font-size: 14px;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .tab-button.active {
    border-bottom: 2px solid #001f4d;
    border-left: none;
  }
  .history-container {
    flex-direction: column;
    text-align: center;
  }

  .history-image img {
    width: 100%;
    max-width: 300px;
  }

  .history-text {
    max-width: 100%;
  }
    }