/* landing page styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.navbar{
    background: rgba(20, 35, 60, 0.78) !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 100 !important;
}

.navbar.scrolled {
    background: rgba(20, 35, 60, 1) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.navbar-toggler {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.35rem 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader {
  position: fixed;
  background: #14233C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.logo-circle {
  width: 72px;
  height: 72px;
  background: #005BE6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wu-pulse 1.6s ease-in-out infinite;
}
.logo-circle span {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.preloader-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0;
  animation: wu-fadeup 0.7s ease 0.3s forwards;
}
.preloader-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: wu-fadeup 0.7s ease 0.55s forwards;
}
.progress-bar-wrap {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  opacity: 0;
  animation: wu-fadeup 0.7s ease 0.7s forwards;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #005BE6, #4a93fb);
  border-radius: 99px;
  animation: wu-bar 2.2s ease 0.8s forwards;
}
@keyframes wu-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 91, 230, 0.4); }
  50%       { transform: scale(1.07); box-shadow: 0 0 0 12px rgba(0, 91, 230, 0); }
}
@keyframes wu-fadeup {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wu-bar {
  0%   { width: 0%; }
  60%  { width: 75%; }
  85%  { width: 90%; }
  100% { width: 100%; }
}
/* Polished three-bar toggler: balanced width, centered bars, crisper animation */
.toggler-icon {
    position: relative;
    width: 40px;
    height: 26px;
    display: inline-block;
    transform-origin: center;
}


.toggler-icon .bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 2px; /* thinner bars */
    background: rgba(255,255,255,0.95);
    border-radius: 2px;
    transition: transform .36s cubic-bezier(.22,.68,.35,1), opacity .18s ease;
    transform-origin: center;
}

/* position all bars centered vertically, offset with translateY for precise control */
.toggler-icon .bar:nth-child(1) { top: 50%; transform: translate(-50%, -50%) translateY(-8px); }
.toggler-icon .bar:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.toggler-icon .bar:nth-child(3) { top: 50%; transform: translate(-50%, -50%) translateY(8px); }

/* Slight hover enlargement for affordance */
.navbar-toggler:hover .toggler-icon { transform: scale(1.06); }

/* Open state: morph into X with smooth position and rotation */
.navbar-toggler:not(.collapsed) .toggler-icon .bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .toggler-icon .bar:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.14);
}

.navbar-toggler:not(.collapsed) .toggler-icon .bar:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar-toggler:focus { outline: none; box-shadow: none; }
.nav-link {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #007bff !important;
}

.auth-buttons {
    align-items: center;
}

.auth-btn {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 0.55rem 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
    z-index: 1;
}


.auth-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0d6efd 0%, #1d4ed8 100%);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.35s ease;
    z-index: -1;
}

.auth-btn:hover {
    color: #fff !important;
    border-color: #0d6efd;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.22);
    transform: translateY(-1px);
}

.auth-btn:hover::before {
    transform: scaleY(1);
}

.auth-btn--ghost {
    border: 2px solid #0d6efd !important;
    background: transparent;
    color: #fff;
}

.auth-btn--primary {
    border: 2px solid transparent;
    background: linear-gradient(135deg, #0d6efd 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.25);
}

.navbar-toggler .navbar-toggler-icon {
    color: #fff !important;
    font-size: 20px !important;
}
.layout1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding: calc(72px + 0.5rem) 1.5rem 1.5rem;
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)), url(./images/bank.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.conlayout{
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     position: relative;
    padding: calc(72px + 0.5rem) 1.5rem 1.5rem;
    color: #fff;
    height: 40vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)), url(./images/him.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}
.conlayout h3{
    font-weight: bold;
}
.layout1 h1 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.05;
}
.layout1 p{
      max-width: 900px;
}
.layout1 .hero-copy {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem 3rem;
}
.layout1 .hero-copy a{
    background: #005BE6;
    color:white;
    text-decoration: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: 500;
}
.another{ position: relative;
    padding: calc(72px + 0.5rem) 1.5rem 1.5rem;
    color: #fff;
    height: 75vh;
       background-image: linear-gradient(rgba(5, 45, 93, 0.619), rgba(1, 14, 30, 0.964)), url(./images/another.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      align-content: center;
}



.another .subsec:nth-child(1){
   width: 90%;
   height: auto;
   display: flex;
   flex-direction: column;
   margin-top: 40px;
   justify-content: center;
 
}
.another .subsec:nth-child(1) h4{
    color: #005BE6;
    margin-left: 20px;
}
.another .subsec:nth-child(1) p{
    font-weight: bold;
    font-size: 26px;
    margin-left: 20px;
    
}
.another .subsec:nth-child(1) a{
    background: #005BE6;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius:8px ;
    width: 150px;
    text-align: center;
}
.another .subsec:nth-child(1) .p{
  display: none;
}
.another .subsec:nth-child(2), .subsec:nth-child(3){
 background:#14233C;
   width: 90%;
   height: auto;
   border-radius: 8px;
   padding: 5px;
   margin-top: 40px;
   position: relative;
   z-index: 10;
}
.another .subsec:nth-child(2) i, .subsec:nth-child(3) i{
    color: #005BE6;
    margin: 20px;
    font-size: 30px;
}
.another .subsec:nth-child(2) h4, .subsec:nth-child(3) h4{
    margin:4px;
    font-weight: bold;
}
.another .subsec:nth-child(2) p, .subsec:nth-child(3) p{
        margin:8px;
        font-size: 14px;
        letter-spacing: 1px;
}
@media screen and (max-width:1115px) {
    .another{
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .another .subsec:nth-child(1){
        grid-column: 1/4;
        display:flex;
        flex-direction: column;
        align-items: center;


    }
    .another .subsec:nth-child(1) h4{
        text-align: center;
    }
    .another .subsec:nth-child(1) p{
        display: none;
    }
    .another .subsec:nth-child(1) .p{
        display:block ;
          font-weight: bold;
    font-size: 26px;
    margin-left: 20px; 
    text-align: center;
    }
     .another .subsec:nth-child(2), .another .subsec:nth-child(3){
        width: 100%;
     }
    
}
@media screen and (max-width:768px) {
    .another{
        grid-template-columns: 1fr;
        background-position: bottom;
    }
     .another .subsec:nth-child(1){
        grid-column: 1;
     }
     .another .subsec:nth-child(2), .another .subsec:nth-child(3){
        width: 100%;
     }
}
.services {
    position: relative; /* important so child absolute positioning works */
    background: white;
    overflow: hidden; 
    padding-top: 50px;
    height: 80vh;/* ensures wave doesn’t spill outside */
}

.services .wave {
    position: absolute; /* pins it relative to .services */
    bottom: 0;          /* sticks to the bottom */
    left: 0;

    width: 100%;
    height: auto;       /* let SVG scale naturally */
}
.services .wave path {
    fill:#005BE6; /* change color here */
}

.services h3{
    text-align: center;
    color:#007bff;
    font-size: 22px;
    font-weight: lighter;
}
.services h4{
    text-align: center;
    font-size: 25px;
    font-weight: 400;
}
.services .servhold{
    width: 100%;
    padding: 10px;
    position: relative;

    top: 30px;
   z-index: 10;
   display: flex; 
   justify-content: center;
   gap: 30px;
   align-items: center;
}
.services .servhold div{
    width:28%;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
}
@media screen and (max-width:480px) {
    .services .servhold div{
        width: 100%;
    }
}
.services .servhold div i{
    background:#EDF3FD;
    margin: 20px;
    padding: 20px;
    font-size: 30px;
    color: #005BE6;
    font-weight: light;
    border-radius:8px ;
}
.services .servhold div h4{
    font-size: 25px;
    color: #474747;
}

@media screen and (max-width:990px) {
        .services{
            height: auto;
            padding-bottom: 30px;
        }
        .services .servhold{
            flex-direction: column;
        }
         .services .servhold div{
            width: 70%;
         }
}
@media screen and (max-width:550px) {
           .services .servhold div{
            width: 80%;
           }
           .services  h4 {
            font-size: 19px !important;
           }
}
@media screen and (max-width:480px) {
    .services .servhold div{
        width: 100%;
    }
    
}

.how_it_works{
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    position: relative
    ;
    z-index: 20;
    padding: 10px;
    background: #EDF3FD;
}
.how_it_works img{
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
    cursor:all-scroll;
}
@media screen and (max-width:750px) {
    .layout1 h1{
        font-size: 30px;
    }
    .layout1 p{
        font-size: 14px;
    }
}
@media screen and (max-width:480px) {
        .layout1 h1{
        font-size: 23px;
        max-width: 1000px;
    }
     .another .subsec:nth-child(1) .p{
        font-size: 19px;
     }
}
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    line-height: 0;
    height: 120px;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.feature-section {
    background: #fff;
    color: #1f2937;
    padding: 4rem 1.25rem;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
}
.feature-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.feature-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-image: linear-gradient(-103deg, #005BE6 0%, #2877f5 35%, #4a93fb 76%, #6caffb 100%);
    transition: 0.3s ease;
    z-index: 0;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}
.feature-card:hover::after {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.feature-card i {
    color: #007bff;
    transition: color 0.3s ease;
}
.feature-card h2,
.feature-card p, .feature-card i {
    position: relative;
    z-index: 1;
    text-align: center;
}
.feature-card:hover h2,
.feature-card:hover p{
    color: #ffffff !important;
}
.feature-card:hover i{
    background: #fff !important;
    color: #007bff !important;
}
.feature-card i{
      width: 60px;
      height: 60px;
      background: #c7d1f5;
      clip-path: polygon(
        30% 0%, 70% 0%, 
        100% 30%, 100% 70%, 
        70% 100%, 30% 100%, 
        0% 70%, 0% 30%
      );
      text-align: center;
      display: flex;
      justify-content: center;
        align-items: center;
}
.feature-card h2 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
}
.feature-card p {
    line-height: 1.8;
    color: #475569;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 4rem 1.25rem;
    background: #f8fafc;
    overflow-x: hidden;
}

.subsect,
.subsec3 {
    flex: 1 1 420px;
    align-items: center;
}
.subsec3 .icons{
    background: #007bff !important;
    color: #fff !important;
    display:flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 10vh;
    padding : 1.5rem;
    border-radius:10px;
    margin:8px;
    font-size: 1.8rem;
}

.subsect {
    display: flex;
    justify-content: center;
}

.about-image {
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    height: 100%;
}

.subsec3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.subsec3 h3{
    color: #007bff !important;
    font-size: 1.25rem;
    font-weight: light;
   letter-spacing: 0.05em;
}

.subsec3 h2 {
    font-size: 2rem;
    line-height: 1.1;
    color: rgb(64, 63, 63);
}
.subsec3 h4 {
    font-size: 1.5rem;
    color: rgb(64, 63, 63);
}

.subsec3 p {
    color: rgb(101, 101, 101);
    font-size: 1rem;
    line-height: 1.6;
}



@media (min-width: 992px) {
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1100;
    }
}

@media (max-width: 991px) {
    .navbar {
        position: relative !important;
        background: #14233C !important;
        box-shadow: none !important;
    }
}
.footerholder{
   background: #14233C;  
   display: flex;
   flex-direction: column;
   align-items: center;
   padding-top:40px;
   padding: 10px;
    padding-bottom: 50px;
}
.footer {
    background: #14233C;
    height: auto;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    width: 100%;
   display: flex;
    justify-content: center;
    padding: 1.5rem;
   
}
.footer div{
    width:20%;
    padding:5px;
}
.footer div h4{
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 50px;
    font-weight: 500;

}
.footer div:nth-child(1){
    width: 30%;
}
.footer div li{
    list-style: none;
    margin: 8px 0;
}
.footer div li a{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer div hr{
    background: gainsboro;
}
.footer div li a:hover{
    color: #007bff;
}
footer div:nth-child(1) a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin:5px;
}
.footer .contact{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px !important;
}
.footer .contact i{
    font-size: 1.2rem;
}
.footer .contact span{
    color: #fff;
    font-size: 0.95rem;
}
@media screen and (max-width: 1115px) {
     .footer{
        display:grid;
        grid-template-columns: 1fr 1fr;
    
     }
     .footer div{
        width: 100%;  
     }
     .footer div:nth-child(1){
        width: 100%;
     }
}
@media screen and (max-width: 768px) {
    .footer{
    grid-template-columns: 1fr;
    }
   
}
.Newsletter{
    background: #1B2A42 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.newsletter-content{
     display: flex !important;
      justify-content: space-around !important;
      align-items: center;
}
.newsletter-form{
    display: flex;
    justify-content: center ;
    align-items: center;
   width: 50%;
}
.inputholder{
  border:1px solid rgba(186, 184, 184, 0.567);
  width:60%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-radius: 4px;
   border-right:transparent !important;
   margin-left:10px;
}
.inputholder input{
    padding: 0.75rem 1rem;
    border: none;
    width: 100%;
    max-width: 100%;
    background:transparent !important;
    outline:none;
    color: white;
   
}
.inputholder:focus-within {
    border: 1px solid #4da3ff;
    outline: none;
}
.inputholder i {
    color: #fff !important;
    transition: color 0.2s ease !important;
}
.inputholder input:focus + i,
.inputholder:focus-within i {
    color: #4da3ff !important;
}

.subscribe-btn{
   margin-left: 0px !important;
   margin:0px !important;
   padding: 0.75rem 1.5rem !important;
   position: relative;
   left:-5px;
   width: 30%;
}
@media screen and (max-width:1000px) {
    .newsletter-content{
        flex-direction: column;
        justify-content: space-around;
    }
    .subscribe-btn{
        width: auto !important;
    }
    .newsletter-form{
        width: 100%;
        margin-top: 10px;
    }
    .inputholder{
        width: 100%;
    }
}


.partners {
    background: #ffffff;
    padding: 50px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
 
.partners h2 {
    font-size: 38px;
    font-weight: 700;
    color: #555;
    margin-bottom: 36px;
    text-align: center;
}
 
/* Outer wrap with fade edges */
.partners-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
 
/* Fade left and right edges */
.partners-wrap::before,
.partners-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.partners-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.partners-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}
 
/* Track - flex row of items */
.partners-track {
    display: flex;
    align-items: center;
    will-change: transform;
    /* No transition here — JS handles it */
}
 
/* Each partner slot */
.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    /* width set by JS based on viewport */
}
 
.partner-item img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    opacity: 0.65;
    filter: grayscale(20%);
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    display: block;
}
 
.partner-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}
 
@media (max-width: 768px) {
    .partners h2 { font-size: 28px; }
    .partner-item img { width: 75px; height: 45px; }
    .partner-item { padding: 0 16px; }
}
 
@media (max-width: 480px) {
    .partner-item img { width: 60px; height: 38px; }
    .partner-item { padding: 0 12px; }
}

.faq {
  background: #EDF3FD;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq h2 {
  font-family: 'Gill Sans', Calibri, sans-serif;
}

.faq .parntholder {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}

.faq .parntholder section {
  width: 45% !important;
}

.accordion-item {
  border: 1px solid #007BFF !important; /* blue border */
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background: #EDF3FD !important;
  font-weight: 500 !important;
  font-size: 19px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #007BFF !important;
  color: #fff !important;
}

.accordion-body {
  background-color: #f9f9f9 !important;
  color: #333 !important;
}
@media screen and (max-width:900px) {
     .faq .parntholder{
        flex-direction: column;
        align-items: center;
     }
     .faq .parntholder section{
        width: 90% !important;
     }
}






.body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f2eeee;
}

.login-card{
    width:500px;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.login-card h1{
    text-align:center;
    color:#3b3b5c;
    margin-bottom:10px;
    font-size:48px;
    font-weight:500;
}

.login-card p{
    text-align:center;
    color:#9ca3af;
    margin-bottom:40px;
}

.body h6{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    font-weight:700;
    color:#555;
    text-transform:uppercase;
    letter-spacing:1px;
}

.input-bo{
    position:relative;
    margin-bottom:25px;
}

.input-bo{
    padding:16px 18px;
    border:1px solid #d6dbe8;
    border-radius:8px;
    background:#eef3ff;
    font-size:15px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
}

.input-bo input{
  border: none;
  background-color: #eef3ff;
  outline:none;
  width:100%;
}

.input-bo i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#8b93a7;
}


.password-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.password-header a{
    text-decoration:none;
    color:#9ca3af;
    font-size:12px;
    font-weight:600;
}

.login-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:6px;
    background:#20c7a5;
    color:white;
    font-size:28px;
    cursor:pointer;
    box-shadow:0 10px 20px rgba(32,199,165,.35);
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
}

.contact-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
}

.contact-section div, 
.contact-section form {
    width: 40%;
    padding: 10px;
}

.contact-section form {
    box-shadow: 0 10px 20px rgba(32,199,165,.35);
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.contact-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #000A14;
}

.contact-section label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.required {
    color: red;
}

.contact-section input,
.contact-section textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #20c7a5;
    outline: none;
}

.submit-btn {
    background: #F8CE01;
    color: #000A14;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #F4E367;
}

.contact-section iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.contact-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
}

.contact-section div, 
.contact-section form {
    width: 40%;
    padding: 10px;
}

.contact-section form {
    box-shadow: 0 10px 20px rgba(32,199,165,.35);
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.contact-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #000A14;
}

.contact-section label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.required {
    color: red;
}

.contact-section input,
.contact-section textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #20c7a5;
    outline: none;
}

.submit-btn {
    background: #F8CE01;
    color: #000A14;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #F4E367;
}

.contact-section iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column-reverse;
    }
    .contact-section div, 
    .contact-section form {
        width: 100%;
    }
    .contact-section div{
        height: 60vh;
    }
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px;
    width: 90%;
    padding:30px 50px;
    border: 1px solid rgb(163, 161, 161);
    border-radius: 10px;
    color: white;
}
.copyright img{
    width: 80px;
}
@media screen and (max-width:768px) {
    .copyright{
        flex-direction: column;
        justify-content: space-around;
    }
    .copyright img{
        margin: 20px;
    }
}
@media screen and (max-width:550px) {
    .copyright{
        width: 100%;
    }
    .copyright p{
        font-size: 12px;
        width: 120%;
        text-align: center;

    }
}

/* LANGUAGE SWITCHER */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
.goog-te-gadget {
    display: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
/* Nuclear option - hide all Google Translate UI */
.goog-te-banner-frame { display: none !important; visibility: hidden !important; }
.skiptranslate { display: none !important; visibility: hidden !important; }
body { top: 0 !important; position: static !important; }
iframe.goog-te-banner-frame { display: none !important; }
.lang-switcher {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9000;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #005BE6;
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}
.lang-btn:hover { background: #005BE6; }
.lang-btn img { width: 20px; border-radius: 2px; }
.lang-btn i { font-size: 0.65rem; opacity: 0.7; }

.lang-dropdown {
    position: absolute;
    bottom: 110%;
    left: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    min-width: 180px;
    overflow: hidden;
    display: none;
    flex-direction: column;
}
.lang-dropdown.open { display: flex; }

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    color: #1a202c;
    cursor: pointer;
    transition: background 0.15s;
}
.lang-option:hover { background: #EBF2FF; color: #005BE6; }
.lang-option img { width: 20px; border-radius: 2px; }

.conlayout h3 {
  font-family: Arial, sans-serif;
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.branchhold {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F0F0F0;
  min-height: 60vh;
  width: 100%;
  padding: 20px;
}

.table-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

.table-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #fff;
}

.branches-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.branches-table th, 
.branches-table td {
  padding: 12px 15px;
  text-align: center;
  font-size: 14px;
}

.branches-table th {
  background-color: #14233C;
  color: #fff;
  font-weight: 500;
}

.branches-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Mobile card layout */
@media (max-width: 600px) {
  .branches-table, 
  .branches-table thead, 
  .branches-table tbody, 
  .branches-table th, 
  .branches-table td, 
  .branches-table tr {
    display: block;
    width: 100%;
  }

  .branches-table thead {
    display: none; /* hide headers */
  }

  .branches-table tr {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 10px;
  }

  .branches-table td {
    text-align: left;
    padding: 8px 10px;
    border: none;
    position: relative;
  }

  .branches-table td::before {
    content: attr(data-label); /* show header label */
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
    color: #14233C;
  }
}
.privacy-section {
    background: #f8f9fa;
}

.privacy-section .card {
    border-radius: 15px;
}

.privacy-section h2,
.privacy-section h4 {
    color: #003366;
}

.privacy-section p,
.privacy-section li {
    color: #555;
    line-height: 1.8;
}
.terms-section {
    background: #f8f9fa;
}

.terms-section .card {
    border-radius: 15px;
}

.terms-section h2,
.terms-section h4 {
    color: #003366;
}

.terms-section p,
.terms-section li {
    color: #555;
    line-height: 1.8;
}
