* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* WRAPPER */
.header-wrapper {
  position: relative;
  padding-left: 240px;
}

/* LEFT LOGO FIXED */
.left-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.left-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOP BAR */
.top-bar {
  background: #1f1f23;
  color: #fff;
  padding: 12px 40px;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* RIGHT SIDE */
.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.red-icon {
  color: #e71228;
  margin-right: 5px;
}

/* NAV BAR */
.nav-bar {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CENTER MENU */
.menu-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* GLOBAL NAV ITEMS */
.menu li {
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.menu li:hover {
  color: #e71228;
}

/* Underline animation (GLOBAL — EXCEPT DROPDOWN) */
.menu li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e71228;
  transition: width 0.3s ease;
}
.menu li:hover::after {
  width: 100%;
}

/* REMOVE UNDERLINE ONLY FOR DROPDOWN */
.menu > li.home-dropdown::after,
.menu > li.home-dropdown:hover::after {
  content: none !important;
  width: 0 !important;
}

/* REMOVE GAP FOR DROPDOWN */
.menu > li.home-dropdown {
  padding: 0 !important;
  margin: 0 !important;
}

/* REMOVE ALL UNDERLINES & BLUE COLOR */
.menu a,
.menu li a,
.dropdown-menu li a {
  text-decoration: none !important;
  color: inherit !important;   /* keeps text same color */
}

/* REMOVE THE RED UNDERLINE ANIMATION */
.menu li::after {
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* REMOVE HOVER COLOR CHANGE TO BLUE */
.menu li:hover a,
.menu li:hover {
  color: #e71228 !important;   /* your red hover color */
}
    

/* DROPDOWN WRAPPER */
.home-dropdown {
  position: relative;
}

/* HOME LINK — ALIGNED PERFECTLY */
.home-dropdown > a {
  text-decoration: none !important;
  color: #000 !important;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0 !important;
  margin: 0;
  line-height: normal;
}

/* Hover color */
.home-dropdown:hover > a {
  color: #e71228 !important;
}

/* Caret arrow alignment */
.home-dropdown > a .fa-caret-down {
  font-size: 10px;
  margin-top: 2px;
  transition: 0.3s;
}
.home-dropdown:hover > a .fa-caret-down {
  color: #e71228;
}

/* DROPDOWN MENU */
.home-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  background: #fff;
  padding: 5px 0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}
.home-dropdown:hover .dropdown-menu {
  display: block;
}

/* DROPDOWN ITEMS */
.home-dropdown .dropdown-menu li a {
  padding: 8px 12px;
  display: block;
  color: #333;
  font-size: 14px;
}
.home-dropdown .dropdown-menu li a:hover {
  background: #e71228;
  color: #fff;
}

/* BUTTONS */
.nav-buttons {
  display: flex;
  gap: 15px;
}
.login-btn {
  padding: 10px 20px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.login-btn:hover {
  background: #000;
  color: #fff;
}
.open-btn {
  padding: 10px 25px;
  background: #e71228;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.open-btn:hover {
  background: #c10f21;
  transform: translateY(-2px);
}

/* Remove bullets for dropdown list */
.home-dropdown .dropdown-menu {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

/* Remove bullets for dropdown li */
.home-dropdown .dropdown-menu li {
  list-style: none !important;
}

/* Remove underline from dropdown links */
.home-dropdown .dropdown-menu li a {
  text-decoration: none !important;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #000;
}



/* Mobile Menu Hidden */
#mobile-menu {
  display: flex;
}

@media (max-width: 768px) {
  #mobile-menu {
    display: none !important;
  }

  #mobile-menu.active {
    display: block !important;
  }
}

.home-dropdown a .fa-caret-down {
  font-size: 18px !important;   /* bigger arrow */
  transition: .3s;
}

.rotate {
  transform: rotate(180deg);
}

@media (max-width: 768px) {

  /* Center whole mobile menu */
  .menu {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Center HOME itself */
 /* --- MOBILE HOME DROPDOWN FIX (NO OVERLAY) --- */

.home-dropdown {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important; /* important: vertical layout */
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

/* Home title centered */
.home-dropdown > a {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px;
  padding: 12px 0;
}

/* Dropdown list acts like normal block */
.home-dropdown .dropdown-menu {
  display: none !important;
  width: 100% !important;
  margin-top: 5px !important;  /* space below Home */
  position: relative !important; /* remove absolute */
  left: 0 !important;
  text-align: center !important;
  background: #fff !important;
  padding: 10px 0 !important;
  box-shadow: none !important;
}

/* Show dropdown */
.dropdown-menu.show {
  display: block !important;
}

/* Dropdown item full width */
/* Dropdown item styling */
.dropdown-menu li a {
  display: block !important;
  width: 100% !important;
  padding: 6px 0 !important;   /* reduced top & bottom padding */
  font-size: 17px !important;  /* increased text size */
  text-align: center !important;
  background: #fff !important;
}

/* Arrow rotation */
.home-dropdown .fa-caret-down {
  font-size: 18px !important;
  transition: .3s;
}

.home-dropdown .rotate {
  transform: rotate(180deg);
}

}




/* ===============================================
   RESPONSIVE STYLING FOR ALL DEVICES
   1024px → 768px → 576px → 480px → 360px
================================================ */

  /* ============= 1024px (small laptops / tablets) ============= */
  @media (max-width: 1024px) {

    .header-wrapper {
      padding-left: 0 !important;
    }

    .left-logo {
      position: relative !important;
      width: 240px;
      height: auto;
      margin: 10px auto;
    }

    .nav-bar {
      padding: 15px 20px;
    }

    .menu {
      gap: 20px;
    }
  }

  /* ============= 768px (tablets & large mobiles) ============= */
  @media (max-width: 768px) {

    /* --- LOGO FIX --- */
    .left-logo {
      width: 180px;
      margin-left: 0px;
    }

      .left-logo  img{
      width: 180px;
    }

    /* --- TOP BAR FIX --- */
    .top-right {
      flex-direction: column;
      font-size: 14px;
      gap: 6px;
    }

    /* --- NAVBAR BACKGROUND BLACK --- */
    .nav-bar {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 20px;
    }

    /* --- HAMBURGER SHOW --- */
    .hamburger {
      display: block;
      color: #000000 !important;
      margin-bottom: 12px;
    }

    /* --- MENU HIDE INITIALLY --- */
    .menu-container {
      width: 100%;
      display: none;
      background: #fff;
      padding: 12px 0;
    }

    .menu-container.active {
      display: block !important;
    }

    /* --- MENU STACKED --- */
    .menu {
      flex-direction: column !important;
      gap: 15px;
      width: 100%;
      padding-left: 10px;
    }

    .menu li {
      width: 100%;
      font-size: 16px;
    }

    /* --- BUTTONS FULL WIDTH --- */
    .nav-buttons {
      flex-direction: column;
      width: 100%;
      margin-top: 10px;
      gap: 12px;
    }

    .login-btn,
    .open-btn {
      width: 100%;
      text-align: center;
    }
  }

  /* ============= 576px (normal phones) ============= */
  @media (max-width: 576px) {

    .left-logo {
      width: 160px;
    }

    .top-right {
      font-size: 13px;
    }

    .menu li {
      font-size: 15px;
    }

    .home-dropdown > a {
      font-size: 16px;
    }
  }

  /* ============= 480px (small phones) ============= */
  @media (max-width: 480px) {

    .top-bar {
      padding: 10px;
      text-align: center;
      height: auto;
    }

    .nav-bar {
      padding: 12px 15px;
    }

    .login-btn,
    .open-btn {
      padding: 10px;
      font-size: 14px;
    }
  }

  /* ============= 360px (mini phones) ============= */
  @media (max-width: 360px) {

    .left-logo {
      width: 140px;
    }

    .top-right {
      font-size: 12px;
    }

    .menu li {
      font-size: 14px;
    }

    .login-btn,
    .open-btn {
      font-size: 13px;
    }
  }


  @media (max-width: 768px) {

    /* Make top-bar normal container */
    .top-bar {
      position: relative;
      padding-top: 60px;   /* space for logo overlay */
      text-align: center;
    }

    /* Logo overlays top bar */
    .left-logo {
      position: absolute !important;
      top: -30px !important;      /* adjust overlay amount */
      left: 50% !important;
      transform: translateX(-50%); /* center logo */
      z-index: 999 !important;
      width: 160px !important;
      height: auto;
      margin: 0 !important;
    }

    .left-logo img {
      width: 100% !important;
    }

    /* Contact info below logo */
    .top-right {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 14px;
      color: #fff;
    }

  }


  @media (max-width: 768px) {

    /* Remove desktop offset */
    .header-wrapper {
      padding-left: 0 !important;
    }

    /* TOP BAR becomes container for contact only */
  .top-right {
      display: flex !important;
      flex-direction: row !important;   /* ← side by side */
      align-items: center !important;
      justify-content: center !important; 
      gap: 8px !important;             /* space between email & phone */
      text-align: center !important;
      font-size: 12px !important;
      color: #fff !important;
    }


    /* LOGO overlays top bar + navbar */
    .left-logo {
    position: absolute !important;
    top: 0px !important;      /* vertical positioning */
    left: 70px !important;      /* THIS moves logo to left side */
    z-index: 999 !important;
    width: 160px !important;
    height: auto;
  }

    .top-bar {
      padding-top: 20px !important;   /* reduced from 60px/70px */
      padding-bottom: 5px !important;
    }

    .left-logo img {
      width: 100% !important;
      height: auto;
    }

    /* CONTACT stays BELOW logo */
    .top-right {
      display: flex !important;
      flex-direction: column;
      align-items: center !important;
      gap: 5px;
      font-size: 14px;
      color: #fff !important;
    }

    /* NAVBAR BELOW top bar */
    .nav-bar {
      width: 100%;
      background: #fff;
      padding: 15px;
      display: flex;
      justify-content: space-between !important;
      align-items: center !important;
    }

    /* Hamburger goes RIGHT */
    .hamburger {
      display: block !important;
      font-size: 28px;
      color: #000 !important;
    }

    /* MENU hidden initially */
    .menu-container {
      display: none;
      width: 100%;
    }

    .menu-container.active {
      display: block !important;
    }

    /* MENU stacks vertically */
    .menu {
      flex-direction: column !important;
      width: 100%;
      gap: 15px;
      padding-left: 10px;
    }

    .menu li {
      width: 100%;
      font-size: 16px;
    }

    /* BUTTONS full width */
    .nav-buttons {
      flex-direction: column !important;
      width: 100%;
      margin-top: 10px;
      gap: 10px;
    }

    .login-btn,
    .open-btn {
      width: 100% !important;
      text-align: center;
    }
  }


  /* DESKTOP DROPDOWN MENU (RED) */
.home-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100px;
  list-style: none;
  padding: 0;
  background: #e71228;  /* RED */
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
}

.home-dropdown .dropdown-menu li a {
  color: #fff !important;     /* WHITE TEXT */
  display: block;
  padding: 10px 14px;
  font-size: 15px;
}

.home-dropdown .dropdown-menu li a:hover {
  background: #fff !important;
  color: #e71228 !important;  /* RED TEXT */
}

/* Desktop hover open */
@media (min-width: 769px) {
  .home-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* NAV LINKS COLOR RESET */
.menu a {
  color: #000 !important;
  text-decoration: none !important;
  display: inline-block;
}

/* MOBILE MODE */
@media (max-width: 768px) {

  .menu-container {
    display: none;
    width: 100%;
  }

  .menu-container.active {
    display: block !important;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    text-align: center;
  }

  .home-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .home-dropdown .dropdown-menu {
    position: relative !important;
    width: 100%;
    display: none;
    box-shadow: none!important;
    background: #fff !important;
  }

  .home-dropdown .dropdown-menu li a {
    color: #000 !important;
    padding: 8px 0 !important;
    background: #fff;
  }

  /* Show dropdown when toggled */
  .dropdown-menu.show {
    display: block !important;
  }

  /* Rotate arrow */
  .dropdown-arrow.rotate {
    transform: rotate(180deg);
  }
}

/* MAKE HOME TEXT SAME STYLE AS OTHER NAV LINKS */
.menu a,
.home-link {
  font-size: 18px !important;
  font-weight: normal !important;
  color: #000 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 0;      /* SAME AS OTHER LINKS */
  margin: 0;
}

/* Hover color same as others */
.home-link:hover {
  color: #e71228 !important;
}

/* Arrow style same */
.dropdown-arrow {
  font-size: 14px !important;
  margin-left: 4px;
  transition: .3s;
}


@media (max-width: 768px) {
    .nav-bar {
        width: 100%;
        display: flex;
        justify-content: space-between !important;  /* keeps logo left + hamburger right */
        align-items: center !important;
    }

    .hamburger {
        display: block !important;
        margin-left: auto !important;  /* pushes hamburger to the right */
        margin-right: 10px;            /* little right spacing */
    }
}

@media (max-width: 768px) {
    .home-dropdown .dropdown-menu li a {
        background: #e71228 !important;  /* red hover */
        color: #fff !important;          /* white text */
    }
}

.left-logo a {
    display: block;        /* makes <a> behave like the old <img> */
    width: 100%;
    height: 100%;
}

/* MAIN HERO WRAPPER */
.bank-hero-section {
    width: 100%;
    min-height: 100vh;
    margin-top: 7px;
    background: #0b0b0b;
    padding: 100px 7%;
    position: relative;
    overflow: hidden;
}

/* SLIDES WRAPPER (IMPORTANT FIX) */
.bank-hero-section .slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* SHARED SLIDE BASE */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(80px);
    transition: opacity .6s ease, transform .6s ease;
}

/* ACTIVE SLIDE FIXED */
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

/* GRID SYSTEM */
.hero-grid {
    display: grid;
    margin-left: 20px;
    margin-top: 40px;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT TEXT */
.hero-left h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.hero-left h1 span {
    color: #d1001f;
}

.hero-left p {
    color: #d8d8d8;
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 480px;
}

/* BUTTONS */
.hero-btns {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

/* Primary Button */
.btn-primary {
    background: #d1001f;
    padding: 14px 32px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.btn-primary:hover {
    background: #b40017;
    transform: translateY(-4px);
}

/* Outline Button */
.btn-outline {
    border: 2px solid #fff;
    padding: 14px 32px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}

/* RIGHT IMAGE */
.hero-right {
    text-align: right;
}

.hero-img {
    width: 100%;
    animation: floatImg 4s infinite ease-in-out;
}

/* Floating animation */
@keyframes floatImg {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ARROWS FIXED LEFT + RIGHT */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    pointer-events: none;
    z-index: 10;
}

.hero-controls button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #fff;
    pointer-events: auto;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hero-controls button:hover {
    background: #d1001f;
    color: #fff;
}

/* ============================
   📱 MOBILE RESPONSIVE FIXES
============================ */

/* Tablets & small laptops */
@media (max-width: 900px) {

    .bank-hero-section {
        padding: 100px 5%;
        min-height: 750px; /* increased height */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        margin-left: 0;
    }

    .hero-right {
        text-align: center !important; /* FIX: centers image */
    }

    .hero-img {
        width: 85%;
        margin: 0 auto; /* FULL CENTER FIX */
        display: block; /* required for centering */
    }

    .hero-controls {
        top: unset;
        bottom: 25px;
        transform: none;
        justify-content: center;
        gap: 25px;
    }
}

/* Large mobile devices */
@media (max-width: 600px) {

    .bank-hero-section {
        min-height: 820px; /* more height for mobile */
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-right {
        text-align: center !important;
    }

    .hero-img {
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 26px;
        font-size: 15px;
    }

    .hero-controls button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {

    .bank-hero-section {
        padding: 70px 5%;
        min-height: 700px; /* extra for small screens */
    }

    .hero-left h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        font-size: 16px;
    }

    .hero-right {
        text-align: center !important;
    }

    .hero-img {
        width: 75%;
        margin: 0 auto;
        display: block;
    }

    .hero-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* SECTION BASE */
.services-section {
  background: #f7f0e9;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* TITLES */
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

/* FLEX LAYOUT */
.services-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* SINGLE SERVICE BOX */
.service-box {
  width: 30%;
  position: relative;
  padding-top: 20px;
  padding-bottom: 10px;
}

/* DIAMOND WRAPPER */
.diamond-wrap {
  display: flex;
  justify-content: center;
}

/* MAIN DIAMOND SHAPE */
.diamond {
  width: 120px;
  height: 120px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
}

.diamond:hover {
  transform: rotate(45deg) translateY(-10px) scale(1.1);
  box-shadow: 0 12px 28px rgba(198, 29, 39, 0.35);
}


/* NUMBER INSIDE DIAMOND */
.diamond span {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  transform: rotate(-45deg);
}

/* INNER DIAMOND LINES (PURE CSS) */
.diamond::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 40px;
  border-bottom: 3px solid #ddd;
  border-left: 3px solid #ddd;
  border-right: 3px solid #ddd;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -5%) rotate(-45deg);
}

.diamond::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 30px;
  border-top: 3px solid #ddd;
  border-left: 3px solid #ddd;
  border-right: 3px solid #ddd;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -5%) rotate(-45deg);
}

/* RED TAG */
.service-tag.red {
  color: #c61d27;
  font-weight: 600;
  margin: 20px 0 20px;
  font-size: 17px;
}

/* TITLE */
.service-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.service-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto 25px;
}

/* READ MORE BUTTON */
.read-more {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.read-more span {
  font-size: 22px;
  margin-left: 4px;
}

.read-more:hover {
  color: #c61d27;
}

/* ==============================
   MOBILE DEVICES - BELOW 768px
   ============================== */
@media (max-width: 768px) {

  /* Stack cards vertically */
  .services-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
  }

  /* Card box */
  .service-box {
    width: 100% !important;
    max-width: 380px;
    padding: 0 !important;
    margin: 0 0 28px 0 !important;   /* balanced spacing */
    position: relative;
  }

  /* Move diamond upward + spacing */
  .diamond-wrap {
    margin-top: -8px !important;      /* lift diamond */
    margin-bottom: 18px !important;   /* gap under diamond */
  }

  /* Diamond smaller */
  .diamond {
    width: 90px;
    height: 90px;
    border-radius: 12px;
  }

  .diamond span {
    top: 22px;
    left: 22px;
    font-size: 18px;
  }

  .diamond::before {
    width: 60px;
    height: 28px;
  }

  .diamond::after {
    width: 45px;
    height: 22px;
  }

  /* Tag spacing */
  .service-tag.red {
    margin: 8px 0 8px !important;
    font-size: 15px;
  }

  /* Title */
  .service-title {
    font-size: 20px;
    margin: 8px 0 !important;
  }

  /* Description */
  .service-desc {
    font-size: 14px;
    margin: 0 0 15px 0 !important;
    max-width: 90%;
  }

  /* Read more */
  .read-more {
    font-size: 15px;
    margin-bottom: 10px !important;
  }

  .read-more span {
    font-size: 18px;
  }
}


/* ==============================
   SMALL MOBILE - BELOW 480px
   ============================== */
@media (max-width: 480px) {

  .service-box {
    margin-bottom: 22px !important;
  }

  .service-title {
    font-size: 18px;
    margin: 6px 0 !important;
  }

  .service-desc {
    margin-bottom: 12px !important;
    font-size: 13px;
  }

  .diamond {
    width: 80px;
    height: 80px;
  }

  .diamond span {
    font-size: 16px;
  }
}

/* ===========================
   MAIN BACKGROUND SECTION
   =========================== */
.banking-section {
    background: url('Images1/bank.webp') no-repeat center/cover;
    position: relative;
    padding: 70px 0 110px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

/* DARK OVERLAY */
.banking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 0;
}

/* All content above overlay */
.banking-section * {
    position: relative;
    z-index: 1;
}

/* CENTER ALIGNMENT CONTAINER */
.banking-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===========================
   CHAT ICON (TOP RIGHT)
   =========================== */
.chat-icon {
    position: absolute;
    right: 60px;
    top: 40px;
    background: #e6003d;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 6px 18px rgba(255, 0, 60, 0.45);
}

/* ===========================
   HEADER TEXT
   =========================== */
.bank-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bank-subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* ===========================
   TAB OPTIONS
   =========================== */
.bank-options {
    display: flex;
    max-width: 900px;
    width: 100%;
    margin-bottom: 40px;
}

.option-box {
    flex: 1;
    padding: 25px 28px;
    border: 1px solid #333;
    background: #1a1c22;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

.option-box.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.option-box .label {
    font-size: 13px;
    opacity: 0.65;
}

.option-box h3 {
    margin-top: 5px;
    font-size: 22px;
}

.dropdown-icon {
    background: #f1dfd7;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 6px;
    border-radius: 4px;
    color: #333;
    position: absolute;
    right: 20px;
    top: 35px;
}

/* ===========================
   CARD WRAPPER (GRID)
   =========================== */
.service-card-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
}

/* ===========================
   INDIVIDUAL CARDS
   =========================== */
.service-card {
    flex: 1;
    background: #1a1c22;
    padding: 28px;
    border-radius: 10px;
    transition: 0.35s;
    border: 1px solid transparent;
    position: relative;
    min-height: 260px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff003e;
}

/* ICON */
.icon-box i {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITLE */
.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* RED LINE */
.line {
    height: 3px;
    width: 45px;
    background: #e6003d;
    margin-bottom: 15px;
    transition: width 0.3s ease;
}

.service-card:hover .line {
    width: 80px;
}

/* DESCRIPTION */
.service-card p {
    font-size: 14px;
    opacity: 0.80;
    margin-bottom: 10px;
}

.small-note {
    opacity: 0.65;
}

/* ARROW BUTTON */
.arrow-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #2d2e34;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    font-size: 18px;
}

.service-card:hover .arrow-btn {
    background: #ff003e;
    transform: scale(1.15);
}

/* ===========================
   VIEW BUTTON
   =========================== */
.view-btn {
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 5px;
    display: table;
    margin: 30px auto 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(255,255,255,0.15);
}

/* HOVER EFFECT */
.view-btn:hover {
    background: #e6003d;             /* theme red */
    color: #fff;                     /* text white */
    border-color: #e6003d;
    transform: translateY(-3px);     /* small lift */
    box-shadow: 0 10px 22px rgba(230,0,60,0.4); /* red glow */
}

/* ===========================
   HIDDEN STATE
   =========================== */
.hidden {
    display: none !important;
}



/* ==========================================
   MOBILE & TABLET (Below 768px)
   ========================================== */
@media (max-width: 768px) {

    /* Section padding */
    .banking-section {
        padding: 50px 0 70px;
    }

    /* Chat icon reposition */
    .chat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: 20px;
        top: 20px;
    }

    /* Header */
    .bank-title {
        font-size: 32px;
        text-align: center;
    }

    .bank-subtitle {
        font-size: 14px;
        text-align: center;
        margin-bottom: 25px;
    }

    /* Tabs stack vertically */
    .bank-options {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .option-box {
        padding: 18px 20px;
    }

    .option-box h3 {
        font-size: 20px;
    }

    /* Dropdown icon smaller */
    .dropdown-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        right: 16px;
        top: 28px;
    }

    /* Cards go vertical */
    .service-card-wrapper {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .service-card {
        width: 100%;
        min-height: auto;
        padding: 22px;
    }

    /* Icons */
    .icon-box i {
        font-size: 32px;
    }

    /* Title */
    .service-card h4 {
        font-size: 18px;
    }

    /* Description */
    .service-card p {
        font-size: 13px;
    }

    /* Arrow button */
    .arrow-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    /* View button */
    .view-btn {
        padding: 10px 22px;
        font-size: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {

    .bank-title {
        font-size: 28px;
    }

    .chat-icon {
        width: 45px;
        height: 45px;
        right: 15px;
        top: 15px;
        font-size: 18px;
    }

    .option-box {
        padding: 15px 18px;
    }

    .service-card {
        padding: 18px;
    }

    .service-card h4 {
        font-size: 17px;
    }

    .view-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

.view-btn {
    text-decoration: none;
}

.service-section {
    text-align: center;
    padding: 40px 0 60px;
    background: #f7f3ef;
    font-family: Poppins, sans-serif;
}

/* ---------- TITLES ---------- */
.main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.sub-title {
    color: #555;
    margin-bottom: 40px;
}

/* ---------- TOP TAB ICONS ---------- */
.service-tabs {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: auto;
}

.tab {
    text-align: center;
    cursor: pointer;
    padding-bottom: 25px;
    position: relative;
    transition: 0.3s ease;
}

.circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.circle i {
    font-size: 45px;
    color: #d1001f;
    transition: 0.3s ease;
}

/* ACTIVE TAB */
.tab.active .circle {
    background: #d60021;
    border-color: #d60021;
    transform: scale(1.15);
}

.tab.active .circle i {
    color: #fff;
}

.tab p {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.3;
}

/* DOWN ARROW */
.down-arrow {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    opacity: 0;
    font-size: 22px;
    transition: 0.3s ease;
    color: #d60021;
}

.tab.active .down-arrow {
    opacity: 1;
}

/* ---------- CONTENT WRAPPER (Left + Right) ---------- */
.tab-row {
    max-width: 1100px;
    margin: 55px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* LEFT CONTENT BOX */
.tab-content {
    flex: 1;
}

/* ISSUE LIST */
.list-card {
    background: #fff;
    padding: 20px 20px;
    font-size: 18px;
    border: 1px solid #e5e5e5;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
}

.list-card:hover {
    border-color: #d60021;
    color: red;
    transform: translateX(5px);
}

.list-card span {
    font-size: 22px;
    color: #777;
}

/* HIDE CONTENT */
.hidden {
    display: none !important;
}

/* ---------- RIGHT SIDE BANNER ---------- */
.es-banner {
    width: 420px;
    background: #0f0f14;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    flex-shrink: 0;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.banner-inner {
    z-index: 2;
}

.banner-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.es-banner h3 {
    line-height: 1.3;
    font-size: 24px;
}

.phone {
    font-size: 20px;
    color: #ff003e;
    margin-top: 12px;
}

/* RIGHT IMAGE */
.banner-img {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 35%;
    margin-left: 220px;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
    z-index: 1;
}

/* ============================
   📱 MOBILE RESPONSIVE (MAX 768px)
   ============================ */
@media (max-width: 768px) {

    /* SECTION PADDING */
    .service-section {
        padding: 30px 0 40px;
    }

    /* TITLES */
    .main-title {
        font-size: 28px;
    }
    .sub-title {
        font-size: 14px;
    }

    /* TABS STACK VERTICAL */
    .service-tabs {
        flex-direction: column;
        gap: 25px;
    }

    .tab {
        padding-bottom: 18px;
    }

    .circle {
        width: 95px;
        height: 95px;
    }

    .circle i {
        font-size: 32px;
    }

    .tab p {
        font-size: 15px;
    }

    .down-arrow {
        bottom: -10px;
    }

    /* MAIN ROW — STACKED */
    .tab-row {
        flex-direction: column;      /* Stack vertical */
        gap: 20px;
        margin-top: 35px;
    }

    /* LEFT CONTENT = FULL WIDTH */
    .tab-content {
        width: 100%;
    }

    /* ISSUE LIST */
    .list-card {
        font-size: 16px;
        padding: 16px 18px;
    }

    .list-card span {
        font-size: 18px;
    }

    /* RIGHT BANNER = FULL WIDTH */
    .es-banner {
        width: 100%;
        padding: 28px 22px;
        height: auto;
        min-height: 250px;
        flex-direction: row;
    }

    .banner-icon {
        font-size: 38px;
    }

    .es-banner h3 {
        font-size: 20px;
    }

    .phone {
        font-size: 18px;
    }

    /* RIGHT IMAGE — FIXED */
    .banner-img {
        position: absolute;
        height: 100%;
        width: 35%;
        right: 30px;
        opacity: 0.6;      /* readability */
        border-radius: 0 12px 12px 0;
    }
}

/* ============================
   📱 VERY SMALL MOBILE (MAX 480px)
   ============================ */
@media (max-width: 480px) {

    .circle {
        width: 80px;
        height: 80px;
    }

    .circle i {
        font-size: 26px;
    }

    .tab p {
        font-size: 14px;
    }

    .list-card {
        padding: 14px;
        font-size: 15px;
    }

    .es-banner {
        padding: 20px 16px;
    }

    .banner-inner h3 {
        font-size: 18px;
    }
}

.card-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 70px 50px;
    overflow: hidden;
    gap: 60px;
}

/* LEFT SIDE BOX */
.left-box {
    position: relative;
    width: 50%;
    min-height: 520px;        /* ★ IMPORTANT FIX */
    padding-top: 40px;        /* Prevent overlap */
}

/* Sand color background block */
.bg-box {
    width: 420px;
    height: 440px;
    background: #f2e9e2;
    border-radius: 20px;
    position: absolute;
    top: 60px;
    left: 40px;
    z-index: 1;
}

/* Main Mobile + Card Image */
.main-image {
    width: 480px;
    position: absolute;
    top: 0;
    left: 80px;
    z-index: 2;
}

/* Floating Icons */
.floating-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    color: #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 5;
    position: absolute;
}

.top-icon {
    top: -15px;
    left: 10px;
}

.mid-icon {
    top: 80px;
    left: 360px;
}

.bottom-icon {
    top: 390px;
    left:100px
}

/* RIGHT CONTENT */
.right-box {
    width: 45%;
}

.title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.desc {
    margin: 20px 0;
    color: #555;
    font-size: 16px;
}

.points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.points li {
    font-size: 16px;
    margin: 10px 0;
}

.points i {
    color: crimson;
    margin-right: 10px;
}

/* FORM */
.form-title {
    margin: 25px 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.input-box {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}

.apply-btn {
    background: #000;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

.apply-btn:hover {
    background: #d1001f;
}

/* ============ MOBILE DEVICES (max-width: 768px) ============ */
@media (max-width: 768px) {

    .card-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    /* LEFT SECTION */
    .left-box {
        width: 100%;
        min-height: 420px;
        padding-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .bg-box {
        width: 90%;
        height: 300px;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-image {
        width: 85%;
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
    }

    /* FLOATING ICONS */
    .floating-icon {
        width: 80px;
        height: 80px;
        font-size: 26px;
    }

    .top-icon {
        top: -15px;
        left: 10%;
    }

    .mid-icon {
        top: 130px;
        left: 70%;
    }

    .bottom-icon {
        top: 260px;
        left: 25%;
    }

    /* RIGHT CONTENT */
    .right-box {
        width: 100%;
        text-align: left;
    }

    .title {
        font-size: 32px;
        line-height: 1.3;
    }

    .desc {
        font-size: 15px;
    }

    .input-box {
        font-size: 15px;
        padding: 12px;
    }

    .apply-btn {
        width: 100%;
        padding: 14px;
        font-size: 17px;
    }
}

/* ============ SMALL MOBILE (max-width: 480px) ============ */
@media (max-width: 480px) {

    .floating-icon {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .top-icon {
        left: 5%;
    }

    .mid-icon {
        left: 65%;
    }

    .bottom-icon {
        left: 20%;
    }

    .title {
        font-size: 28px;
    }

    .apply-btn {
        font-size: 16px;
    }
}

.offer-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #f7f3ef;
    padding: 40px 0;
}

/* SLIDE WRAPPER */
.offer-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 7%;
    gap: 40px;
    opacity: 0;
    transform: translateX(50px);
    position: absolute;
    top: 0;
    width: 100%;
    transition: .6s ease;
}

.offer-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* LEFT SIDE */
.offer-left {
    width: 48%;
}

.offer-tag {
    color: #d1001f;
    font-weight: 600;
    margin-bottom: 12px;
}

.offer-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-desc {
    color: #555;
    margin-bottom: 25px;
    max-width: 450px;
}

/* POINTS */
.offer-points {
    margin-bottom: 25px;
}

.offer-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.offer-point i {
    color: #d1001f;
    font-size: 20px;
    margin-right: 12px;
}

.offer-btn {
    padding: 14px 28px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

.offer-btn:hover {
    background: #d1001f;
}

/* RIGHT IMAGE */
.offer-right {
    width: 48%;
    display: flex;
    justify-content: flex-end;
}

.offer-img {
    width: 85%;
    border-radius: 10px;
}

/* CONTROLS */
.offer-controls {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-controls button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 20px;
}

.offer-controls button:hover {
    background: #d1001f;
    color: #fff;
}

/* Fix for slide click issue */
.offer-slide {
    pointer-events: none;  /* inactive slides cannot block */
}

.offer-slide.active {
    pointer-events: auto;  /* active slide is clickable */
}

.offer-img {
    pointer-events: none;  /* image never blocks the button */
}




/* ============================
   MOBILE & TABLET RESPONSIVE
   ============================ */
@media (max-width: 992px) {

    .offer-slide {
        flex-direction: column;
        padding: 40px 5%;
        text-align: center;
    }

    .offer-left,
    .offer-right {
        width: 100%;
    }

    .offer-right {
        justify-content: center;
    }

    .offer-title {
        font-size: 34px;
    }

    .offer-desc {
        margin: auto;
    }

    .offer-img {
        width: 90%;
        margin-top: 20px;
    }

    .offer-controls {
        right: 10px;
    }
}

/* ============================
   MOBILE ≤ 768px
   ============================ */
@media (max-width: 768px) {

    .offer-title {
        font-size: 30px;
    }

    .offer-points {
        margin: 20px auto;
    }

    .offer-point {
        justify-content: center;
    }

    .offer-btn {
        padding: 12px 24px;
    }

    .offer-controls button {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* ============================
   MOBILE ≤ 600px (Small Phones)
   ============================ */
@media (max-width: 600px) {

    .offer-slide {
        padding: 30px 5%;
    }

    .offer-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .offer-desc {
        font-size: 15px;
    }

    .offer-img {
        width: 100%;
    }

    .offer-controls {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 20px;
    }
}

/* ============================
   MOBILE ≤ 480px (Very Small)
   ============================ */
@media (max-width: 480px) {

    .offer-title {
        font-size: 24px;
    }

    .offer-btn {
        width: 100%;
        padding: 12px;
    }

    .offer-controls button {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* --------------------
   FAQ SECTION LAYOUT FIX
-------------------- */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    max-width: 1350px;
    margin: auto;
    gap: 40px;
}

/* LEFT IMAGE FIXED SIZE */
.faq-left {
    flex: 0 0 48%;              /* Fixed width like reference */
    display: flex;
    justify-content: center;
}

.faq-left img {
    width: 100%;
    max-width: 400px;           /* Prevent oversized image */
    height: 450px;
    border-radius: 10px;
    object-fit: cover;
}

/* RIGHT SIDE */
.faq-right {
    flex: 1;
}

/* --------------------
   FAQ TEXT STYLE
-------------------- */
.faq-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* FAQ ITEMS */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.faq-question i {
    font-size: 16px;
    transition: .3s;
}

.faq-item.active .faq-question {
    color: #d1001f;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
    color: #d1001f;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 10px;
}

/* ============================
   MOBILE DEVICES (max 768px)
============================ */
@media (max-width: 768px) {

    .faq-container {
        flex-direction: column;        /* Stack image + FAQ */
        gap: 25px;
        text-align: center;
    }

    /* LEFT IMAGE */
    .faq-left {
        flex: unset;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .faq-left img {
        width: 100%;
        max-width: 100%;              /* Full width mobile */
        height: auto;                 /* AUTO HEIGHT FIX */
        border-radius: 10px;
        object-fit: cover;
    }

    /* RIGHT SIDE */
    .faq-right {
        width: 100%;
        text-align: left;             /* Keep text aligned left */
        padding: 0 5px;
    }

    .faq-title {
        font-size: 32px;              /* Smaller title */
        text-align: left;
    }

    .faq-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* FAQ ITEMS */
    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* ======================
   FOOTER
   ====================== */
.footer {
    background: #0c1121;
    color: #ccc;
    overflow: hidden;
    padding: 20px 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* LOGO */
.footer-logo {
    margin-bottom: 15px;
}
.footer-logo img {
    width: 200px;
}
    

.logo-icon {
    width: 45px;
}

/* DESCRIPTION */
.bank-desc {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social {
    width: 40px;
    height: 40px;
    background: #1d2236;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
}

/* Hover Effects */
.social:hover {
    background: #e82d2d;
    transform: translateY(-4px);
}

/* FOOTER COLUMNS */
.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: #fff;
}

/* BRANCH SELECT */
.footer-select {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    margin-bottom: 15px;
}

.footer-select option {
    color: #000;
}

/* BUTTON */
.map-btn {
    width: 150px;
    background: #e82d2d;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
}

/* ADDRESS OUTPUT */
.branch-output {
    margin-top: 15px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

/* COPYRIGHT */
.copyright {
    background: #090c18;
    text-align: center;
    padding: 18px;
    color: #aaa;
}

.copyright span {
    color: #e82d2d;
    font-weight: bold;
}

.social-icons a {
    text-decoration: none;   /* remove underline */
    color: inherit;          /* keep default icon color */
}

/* ============================================================
   📱 FOOTER SECTION – FULL RESPONSIVE MEDIA QUERIES
============================================================ */

/* ---------- Tablets (max-width: 1024px) ---------- */
@media (max-width: 1024px) {

  .footer {
    padding: 30px 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-logo img {
    width: 180px;
  }
}

/* ---------- Tablets & Large Mobiles (max-width: 768px) ---------- */
@media (max-width: 768px) {

  .footer {
    padding: 30px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;  /* Single column */
    text-align: center;
    gap: 35px;
  }

  .footer-logo img {
    width: 160px;
    margin: 0 auto;
  }

  .bank-desc {
    font-size: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-col h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .footer-col ul li {
    font-size: 15px;
  }

  .footer-select {
    width: 100%;
  }

  .map-btn {
    width: 100%;
    margin-top: 10px;
  }

  .branch-output {
    text-align: center;
  }
}

/* ---------- Mobiles (max-width: 576px) ---------- */
@media (max-width: 576px) {

  .footer {
    padding: 25px 20px;
  }

  .footer-logo img {
    width: 150px;
  }

  .social-icons {
    gap: 10px;
  }

  .social {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .footer-col ul li {
    font-size: 14px;
  }

  .bank-desc {
    font-size: 14px;
  }
}

/* ---------- Small Phones (max-width: 480px) ---------- */
@media (max-width: 480px) {

  .footer {
    padding: 20px 15px;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col ul li {
    font-size: 13px;
  }

  .map-btn {
    padding: 10px;
  }
}

/* ---------- Mini Phones (max-width: 360px) ---------- */
@media (max-width: 360px) {

  .footer-logo img {
    width: 120px;
  }

  .footer-col ul li {
    font-size: 12px;
  }

  .social {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .map-btn {
    font-size: 14px;
  }
}

.footer-col ul li a {
    text-decoration: none;     /* remove underline */
    color: #ccc;               /* normal color */
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;               /* hover color */
}


/* ============================
   GLOBAL ANIMATION CLASSES
============================ */

/* 1. backInLeft Animation */
.backInLeft {
    opacity: 0;
    animation: backInLeft 0.9s ease-out forwards;
}

@keyframes backInLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateX(30px) scale(1.05);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}


/* 2. backInRight Animation */
.backInRight {
    opacity: 0;
    animation: backInRight 0.9s ease-out forwards;
}

@keyframes backInRight {
    0% {
        opacity: 0;
        transform: translateX(120px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px) scale(1.05);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}


/* 3. flipInX Animation */
.flipInX {
    opacity: 0;
    animation: flipInX 0.8s ease-out forwards;
}

@keyframes flipInX {
    0% {
        transform: perspective(600px) rotateX(90deg);
        opacity: 0;
    }
    50% {
        transform: perspective(600px) rotateX(-10deg);
        opacity: 1;
    }
    100% {
        transform: perspective(600px) rotateX(0deg);
    }
}


/* 4. lightSpeedInRight Animation */
.lightSpeedInRight {
    opacity: 0;
    animation: lightSpeedInRight 0.7s ease-out forwards;
}

@keyframes lightSpeedInRight {
    0% {
        transform: translateX(150%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(-10%) skewX(10deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) skewX(0);
    }
}


/* 5. lightSpeedInLeft Animation */
.lightSpeedInLeft {
    opacity: 0;
    animation: lightSpeedInLeft 0.7s ease-out forwards;
}

@keyframes lightSpeedInLeft {
    0% {
        transform: translateX(-150%) skewX(30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(10%) skewX(-10deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0) skewX(0);
    }
}


.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.4s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}
