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

body{
    margin: 0;
  font-family: 'HK Guise', sans-serif;
  background-color: #171213;
  color: #fff;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;

}
.banking-main {
  background-color: #171213;
  color: #f1f1f1;
  line-height: 1.6;
  padding: 2rem 1rem;
}

header {
  background-color: transparent;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left img {
  height: 80px;
  margin-right: 20px;
}

/* Tablet responsive for header logo */
@media (max-width: 1024px) {
  .header-left img {
    height: 60px;
  }
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px;
  width: 851px;
  position: relative;
  top: 0px;
  left: 100px;
  background-blend-mode: overlay;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  flex-wrap: wrap;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  */
}

.csu-nav-link,
.csu-dropdown-link {
  text-decoration: none;
}

/* Tablet responsive for nav */
@media (max-width: 1024px) {
  nav ul {
    width: 90%;
    left: 5%;
    padding: 8px;
  }
}

@media (max-width: 1300px) {
  nav ul {
    width: 100%;
    left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .header-left {
    margin-bottom: 20px;
  }

  .header-right {
    margin-top: 20px;
  }
}

/* Base navigation styles */
.csu-main-nav .csu-nav-menu .csu-nav-item {
  position: relative;
  padding: 5px;
  /* Adjust as needed */
}

.csu-main-nav:hover .csu-nav-item:hover .csu-nav-link:hover {
  background-color: rgb(255, 255, 255);
  color: black;
  border-radius: 5px;
}

/* Active Page - Make it Bold */
.csu-main-nav .active .csu-nav-link {
  font-weight: bold;
}

.csu-main-nav .csu-nav-menu .csu-nav-item .csu-nav-link {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  font-size: 13px;
}

/* Tablet adjustment for nav links */
@media (max-width: 1024px) {
  .csu-main-nav .csu-nav-menu .csu-nav-item .csu-nav-link {
    padding: 15px;
    font-size: 12px;
  }
}

.csu-dropdown {
  position: relative;
}

.csu-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 10;
  padding: 10px;
  max-width: 200px;
  border-radius: 5px;
  margin-top: -1px;
  /* very important addition */
  background: rgb(0, 0, 0);
  /* backdrop-filter: blur(10px); */
}

.csu-main-nav .csu-nav-item:hover>.csu-dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .csu-dropdown-menu {
    position: static;
    width: 100%;
    max-width: none;
  }
}

.csu-dropdown-menu .csu-dropdown-item {
  width: 100%;
  margin: 5px 0;
  /* box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); */
  opacity: 85%;
}

.csu-dropdown-menu .csu-dropdown-item .csu-dropdown-link {
  display: block;
  text-align: left;
  padding: 5px;
  color: rgb(255, 255, 255);
  width: 100%;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
  /* background-color: rgba(0, 0, 0, 0.8); */
}

.csu-dropdown-item:hover .csu-dropdown-link {
  opacity: 90%;
  background: linear-gradient(100deg, rgb(205, 194, 194), rgb(86, 86, 86));
  color: aqua;
}

.csu-header-right .csu-demo-button {
  background: white;
  color: black;
  border: none;
  padding: 20px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Tablet responsive adjustment for demo button */
@media (max-width: 1024px) {
  .csu-header-right .csu-demo-button {
    padding: 15px 15px;
    font-size: 14px;
  }
}

.csu-header-right .csu-demo-button:hover {
  background: linear-gradient(100deg, #ff4d4d, black);
  color: white;
}

/* nav page ends */
h1 {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p.intro {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #cfcfcf;
  font-size: 20px;
  font-weight: 400;
}

.banking {
  position: relative;
  background-color: #171213;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  color: #fff;
  /* font-family: 'Courier New', monospace; */
}

.banking:hover {
  transform: scale(1.02);
  border: 1px solid whitesmoke;
}

/* Pulse circle effect */
.banking::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  animation: pulseScan 1.5s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Horizontal scan line effect */
.banking::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 0, 0.15), transparent);
  animation: scanLine 3s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes pulseScan {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.6;
  }
  50% {
    width: 300px;
    height: 300px;
    opacity: 0.1;
  }
  100% {
    width: 10px;
    height: 10px;
    opacity: 0.6;
  }
}

@keyframes scanLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}


.banking h2 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

.banking img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 1rem auto;
  border-radius: 8px;
}

.banking h3 {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

.banking p {
  text-align: justify;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #ccc;
}

.banking span {
  color: #ff4d4d;
  font-weight: bold;
}

.approach {
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 10px;
}

.approach h4 {
  font-size: 35.17px;
  font-weight: 500;

  margin-bottom: 1rem;
}

.approach ul {
  list-style: none;
  padding: 0;
  font-size: 24.62px;
  font-weight: 400;
}

.approach li {
  margin-bottom: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.approach li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ff4d4d;
}

@media (max-width: 768px) {
  .banking h2 {
    font-size: 1.5rem;
  }

  .banking h3 {
    font-size: 1.1rem;
  }

  .approach {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .banking {
    padding: 1rem;
  }

  .approach li {
    font-size: 0.95rem;
  }
}


.contact-cta {
    background-color: #171213;
    padding: 3rem 1rem;
    margin-top: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .contact-cta h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .contact-button:hover {
    background-color: #e94444;
  }
/* === Base Styles for Contact CTA (desktop & large screens) === */
.contact-cta {
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .contact-cta h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
  }
  
  .contact-button {
    background-color: #111;
    color: #fff;
    padding: 0.8rem 2rem;
    border: 1px solid rgb(146, 146, 146);
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .contact-button:hover {
    background-color: rgb(188, 21, 21);
  }
  
  /* === Laptop (1025px to 1440px) === */
  @media (max-width: 1440px) {
    .contact-cta h2 {
      font-size: 1.8rem;
    }
  
    .contact-button {
      font-size: 0.95rem;
      padding: 0.75rem 1.8rem;
    }
  }
  
  /* === Tablet (769px to 1024px) === */
  @media (max-width: 1024px) {
    .contact-cta {
      padding: 3rem 1.5rem;
    }
  
    .contact-cta h2 {
      font-size: 1.6rem;
    }
  
    .contact-button {
      font-size: 0.9rem;
      padding: 0.7rem 1.6rem;
    }
  }
  
  /* === Mobile (481px to 768px) === */
  @media (max-width: 768px) {
    .contact-cta h2 {
      font-size: 1.4rem;
    }
  
    .contact-button {
      font-size: 0.9rem;
      padding: 0.65rem 1.4rem;
    }
  }
  
  /* === Small Mobile (up to 480px) === */
  @media (max-width: 480px) {
    .contact-cta {
      padding: 2rem 1rem;
    }
  
    .contact-cta h2 {
      font-size: 1.2rem;
    }
  
    .contact-button {
      width: 100%;
      display: inline-block;
      font-size: 1rem;
      padding: 1rem;
    }
  }

  
  .last-page-container {
    background: linear-gradient(to bottom, #171213, #A00D2B);
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
  }
  
  .cyber-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px;
    flex-grow: 1;
    height: 900px;
  }
  
  .cyber-header {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 20px 0;
  }
  
  .cyber-header img {
    height: 76px;
    width: 272.98px;
  }
  
  .cyber-footer {
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    border-top: 1px solid #333;
  }
  
  .cyber-footer>div {
    flex: 1;
    margin: 0 15px;
    box-sizing: border-box;
  }
  
  .cyber-footer h3 {
    font-size: 18.73px;
    text-align: left;
    font-weight: bold;
  }
  
  .cyber-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 204px;
    height: 210px;
  }
  
  .cyber-footer ul li {
    margin-bottom: 8px;
  }
  
  .cyber-footer a {
    color: #8F8F8F;
    text-decoration: none;
    font-size: 14.98px;
    font-weight: 500;
    line-height: 2;
  }
  
  .cyber-offices {
    display: flex;
    flex-direction: column;
    width: 337px;
    height: 263px;
  }
  
  .cyber-contact-us {
    width: 291px;
    height: 240px;
    font-size: 25px;
  }
  
  .cyber-follow-us {
    width: 158.625px;
    height: 80px;
  }
  
  .cyber-offices div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  
  .cyber-contact-us div p {
    font-size: 15px;
    font-weight: 500;
    color: #8F8F8F;
  }
  
  .cyber-offices p {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin: 5px 0;
  }
  
  .cyber-offices img {
    width: 35px;
    height: 30px;
    margin-right: 10px;
  }
  
  .cyber-contact-us img {
    width: 30px;
    height: 20px;
  }
  
  .csu-cyber-contact-us img i {
    width: 30px;
  }
  
  .cyber-follow-us a {
    display: inline-block;
    margin-right: 10px;
  }
  
  .cyber-follow-us a:hover {
    color: white;
  }
  
  .cyber-follow-us a i {
    font-size: 27px;
  }
  
  .cyber-divider3 {
    width: 1280px;
    justify-self: left;
    height: 2px;
    background: white;
    margin-top: 100px;
  }
  
  .cyber-bottom-section {
    background-color: linear-gradient(to bottom, #A00D2B);
    /* Note: should be background-image for gradients */
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1290px;
  }
  
  .text-content {
    width: 676px;
    height: 97px;
  }
  
  .cyber-bottom-section h6 {
    font-size: 30px;
    font-weight: 700;
  }
  
  .cyber-bottom-section p {
    font-size: 30px;
    font-weight: 700;
    color: red;
    margin-top: 10px;
  }
  
  .cyber-bottom-section button {
    width: 238px;
    height: 52px;
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.26);
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    white-space: nowrap;
    font-weight: 700;
  }
  
  .cyber-bottom-section button:hover {
    background-color: white;
    color: black;
  }
  
  .cyber-iso-logos {
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: 185px;
    height: 81px;
  }
  
  .cyber-iso-logos img {
    height: 81px;
    margin: 0 15px;
  }
  
  .cyber-text-and-logos-container {
    display: flex;
    flex-direction: column;
  }
  
  .cyber-bottom-button-container {
    display: flex;
    align-items: center;
  }
  
  .cyber-footer>div:nth-child(1) ul li a:hover,
  .cyber-footer>div:nth-child(2) ul li a:hover {
    color: red;
    cursor: pointer;
  }
  
  /* ================== TABLET RESPONSIVE START ================== */
  @media (min-width: 768px) and (max-width: 1024px) {
    .last-page-container {
      background: linear-gradient(to bottom, #171213, #A00D2B);
      background-size: cover;
      background-position: center;
    }
  
    .cyber-container {
      padding: 40px 30px;
      height: auto;
    }
  
    .cyber-header img {
      width: 220px;
      height: auto;
    }
  
    .cyber-footer {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 30px 20px;
    }
  
    .cyber-footer > div {
      margin: 0;
      width: 100%;
    }
  
    .cyber-footer h3 {
      font-size: 18px;
      position: relative;
      padding-bottom: 8px;
      margin-bottom: 15px;
    }
  
    .cyber-footer h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: #A00D2B;
    }
  
    .cyber-footer ul {
      width: 100%;
      height: auto;
    }
  
    .cyber-offices, 
    .cyber-contact-us {
      width: auto;
      height: auto;
    }
  
    .cyber-offices div {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin-bottom: 15px;
    }
  
    .cyber-contact-us div {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin-bottom: 15px;
    }
  
    .cyber-contact-us div p {
      margin: 0;
    }
  
    .cyber-follow-us {
      grid-column: span 2;
      width: 100%;
      height: auto;
      margin-top: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .cyber-follow-us h3 {
      align-self: center;
      text-align: center;
    }
    
    .cyber-follow-us h3:after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .cyber-follow-us .social-icons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }
  
    .cyber-divider3 {
      width: 100%;
      margin: 30px auto;
    }
  
    .cyber-bottom-section {
      width: 100%;
      padding: 30px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }
  
    .cyber-text-and-logos-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 25px;
    }
  
    .text-content {
      width: 60%;
      height: auto;
    }
  
    .cyber-bottom-section h6 {
      font-size: 24px;
      margin: 0;
    }
  
    .cyber-bottom-section p {
      font-size: 22px;
      margin-top: 5px;
    }
  
    .cyber-iso-logos {
      width: auto;
      height: auto;
      margin-top: 0;
    }
  
    .cyber-iso-logos img {
      height: 60px;
      margin: 0 10px;
    }
  
    .cyber-bottom-section button {
      width: 220px;
      height: 50px;
      font-size: 14px;
      margin: 0 auto;
      display: block;
    }
  }
  
  /* ================== MOBILE RESPONSIVE START ================== */
  @media (max-width: 767px) {
  
    .last-page-container {
      background: linear-gradient(to bottom, #171213, #A00D2B);
      background-size: cover;
      background-position: center;
      padding: 10px;
    }
  
    .cyber-container {
      padding: 30px 20px;
      height: auto;
    }
  
    .cyber-header img {
      width: 180px;
      height: auto;
    }
  
    .cyber-footer {
      flex-direction: column;
      align-items: center;
      padding: 20px 10px;
    }
  
    .cyber-footer>div {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .cyber-footer h3 {
      text-align: center;
      font-size: 18px;
    }
  
    .cyber-footer ul {
      width: 100%;
      height: auto;
      margin-top: 10px;
    }
  
    .cyber-footer ul li {
      margin-bottom: 6px;
    }
  
    .cyber-footer a {
      font-size: 14px;
    }
  
    .cyber-offices,
    .cyber-contact-us,
    .cyber-follow-us {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .cyber-offices div,
    .cyber-contact-us div {
      flex-direction: column;
      align-items: center;
    }
  
    .cyber-offices img,
    .cyber-contact-us img {
      margin-bottom: 8px;
    }
  
    .cyber-contact-us p,
    .cyber-offices p {
      text-align: center;
    }
  
    .cyber-follow-us {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 10px;
    }
  
    .cyber-follow-us a i {
      font-size: 26px;
  
    }
  
    .cyber-bottom-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 10px;
      width: 100%;
    }
  
    .cyber-bottom-section .text-content {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .cyber-bottom-section h6 {
      font-size: 24px;
    }
  
    .cyber-bottom-section p {
      font-size: 20px;
      margin-top: 8px;
    }
  
    .cyber-bottom-section button {
      margin-top: 20px;
      width: 200px;
      height: 48px;
      font-size: 14px;
    }
  
    .cyber-iso-logos {
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
      margin-top: 20px;
    }
  
    .cyber-iso-logos img {
      width: 60px;
      margin: 10px;
      height: auto;
    }
  
    .cyber-divider3 {
      width: 90%;
      margin: 50px auto 20px auto;
    }
  
    .fa-square-phone {
      vertical-align: middle;
      margin-top: -20px;
    }
  }
  
  /* ================== MOBILE RESPONSIVE END ================== */

.container12345 {
    width: 100%;
    max-width: 1500px; /* Centered content */
    margin: 0 auto;
    padding: 0 0px; /* Space on sides for mobile */
  }