
        :root {
            --bg-dark: #0b0f0d;
            --nav-bg: #070908;
            --input-bg: #1e2320;
            --text-white: #ffffff;
            --text-muted: #737c77;
            --baji-green: #0d613b;
            --baji-green-hover: #117d4d;
            --baji-red: #e62e2d;
            --font-stack: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-stack);
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-dark)!important;
        }

        .login_page_col { 
            margin: 0;
        }

        .navbar {
            background-color: var(--nav-bg);
            height: 54px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 24px;
            border-bottom: 1.5px solid #141a16;
            position: relative;
            z-index: 10;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .brand-logo-text {
            font-size: 24px;
            font-weight: 900;
            color: var(--text-white);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
        }

        .brand-logo-text span {
            color: var(--baji-red);
        }

        .crown-icon {
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, #fce881, #cba135);
            clip-path: polygon(50% 0%, 100% 30%, 85% 100%, 15% 100%, 0% 30%);
            display: inline-block;
            margin-left: 3px;
            position: relative;
        }

        .crown-icon::after {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 50%;
            height: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
        }

        .nav-right .home-wrapper {
            border: 1px solid #2b332e;
            border-radius: 6px;
            padding: 5px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
        }

        .nav-right .home-wrapper:hover {
            background-color: #121815;
            border-color: var(--baji-green);
        }

        .nav-right svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: var(--text-white);
            stroke-width: 2.5;
        }

        .viewport-wrapper {
            display: flex;
            flex: 1;
            height: calc(100vh - 62px);
            flex-shrink: 0;
            margin-top: 62px;
        }

        .hero-panel {
            flex: 1.25;
            position: relative;
            background-color: #020403;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-panel video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-fallback-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('image_19fd4c.jpg');
            background-size: cover;
            background-position: center;
            z-index: 1;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .portal-panel {
            flex: 0.75;
            background-color: var(--bg-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            /*padding: 0 10%;*/
            position: relative;
            border-left: 1px solid #141a16;
            overflow-y: auto;
        }
        
        .portal-panel {
                /*flex: none;*/
                padding: 40px 20px 80px 20px;
                border-left: none;
                align-items: center;
            }


        .tab-bar {
            display: flex;
            width: 100%;
            max-width: 80%;
            border-bottom: 1.5px solid #1a201d;
            margin-bottom: 30px;
        }

        .tab-btn {
            flex: 1;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 700;
            padding: 14px 0;
            cursor: pointer;
            text-align: center;
            position: relative;
            transition: color 0.3s ease;
        }

        .tab-btn.active {
            color: var(--text-white);
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1.5px;
            left: 0;
            width: 100%;
            height: 2.5px;
            background-color: var(--baji-green);
        }

        .form-scroller {
            width: 100%;
            max-width: 80%;
        }

        .screen-container {
            display: none;
        }

        .screen-container.active {
            display: block;
            animation: fadeIn 0.3s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .field-group {
            margin-bottom: 20px;
            position: relative;
        }

        .field-group label {
            display: block;
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: capitalize;
        }

        .signup-curr_sp_aa{
            width: 100%;
            background-color: var(--input-bg);
            border: 1.5px solid transparent;
            border-radius: 5px;
            padding: 13px 15px;
            color: var(--text-white);
            font-size: 14.5px;
            outline: none;
            transition: border-color 0.25s ease, background-color 0.25s ease;
            height: 52px;
            display: flex;
            align-items: center;
        }

        .signup-curr_sp_aa_img{
            height: 18px;
            width: 18px;
        }

        #signup-curr{
            padding: 13px 15px 13px 8px;
        }

        .field-group input,
        .field-group select {
            width: 100%;
            background-color: var(--input-bg);
            border: 1.5px solid transparent;
            border-radius: 5px;
            padding: 13px 15px;
            color: var(--text-white);
            font-size: 14.5px;
            outline: none;
            transition: border-color 0.25s ease, background-color 0.25s ease;
        }

        .field-group input::placeholder {
            color: #4b524e;
        }

        .field-group input:focus,
        .field-group select:focus {
            /* border-color: var(--baji-green);
            background-color: #161b18; */
        }

        .recovery-bar {
            text-align: right;
            margin-bottom: 25px;
        }

        .recovery-bar a {
            color: #00aa64;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: color 0.2s;
        }

        .recovery-bar a:hover {
            color: var(--baji-green-hover);
            text-decoration: underline;
        }

        .primary-submit-btn {
            width: 100%;
            background-color: var(--baji-green);
            color: var(--text-white);
            border: none;
            border-radius: 5px;
            padding: 14px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.1s ease;
            box-shadow: 0 4px 10px rgba(13, 97, 59, 0.25);
        }

        .primary-submit-btn:hover {
            background-color: var(--baji-green-hover);
        }

        .primary-submit-btn:active {
            transform: scale(0.98);
        }

        .signup-header-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 18px;
        }

        .stepper-progress {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 26px;
            position: relative;
        }

        .stepper-progress::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1a201d;
            z-index: 1;
        }

        .progress-indicator-line {
            position: absolute;
            top: 20px;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: var(--baji-green);
            z-index: 2;
            transition: width 0.4s ease-in-out;
        }

        .step-node {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            z-index: 3;
            position: relative;
        }

        .step-node-left{
            align-items: flex-start!important;
        }

        .step-node-right{
            align-items: flex-end!important;
        }

        .node-bubble {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #1e2320;
            color: var(--text-muted);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 6px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .step-node.active .node-bubble {
            background-color: var(--baji-green);
            color: var(--text-white);
        }

        .step-node.completed .node-bubble {
            background-color: var(--baji-green);
            color: var(--text-white);
        }

        .node-text {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 600;
            transition: color 0.3s;
        }

        .step-node.active .node-text {
            color: var(--baji-green);
        }

        .phone-group-split {
            display: flex;
            gap: 10px;
        }

        .phone-group-split input {
            width: 100%;
        }

        .notification-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-50px);
            background-color: #121815;
            border-left: 4px solid var(--baji-green);
            padding: 12px 24px;
            border-radius: 6px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            pointer-events: none;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            color: #ffffff;
            font-size: 14px;
        }

        .notification-toast.error-toast {
            border-left-color: var(--baji-red);
        }

        .notification-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        /* Password Strength Checklist Styles */
        .pwd-strength-box {
            margin-top: 10px;
            padding: 10px 12px;
            background-color: #141816;
            border: 1px solid #232a26;
            border-radius: 6px;
        }

        .pwd-strength-title {
            font-size: 12px;
            font-weight: 600;
            color: #94a3b8;
            margin-bottom: 6px;
        }

        .pwd-rule-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #737c77;
            margin-bottom: 4px;
            transition: color 0.2s ease;
        }

        .pwd-rule-item:last-child {
            margin-bottom: 0;
        }

        .pwd-rule-item i {
            font-size: 11px;
            width: 14px;
        }

        .pwd-rule-item.valid {
            color: #02c953;
        }

        .pwd-rule-item.invalid {
            color: #ef4444;
        }

        .username-check-msg {
            font-size: 12px;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .username-check-msg.valid {
            color: #02c953;
        }

        .username-check-msg.invalid {
            color: #ef4444;
        }

        @media (max-width: 991px) {
            .hero-panel {
                flex: 1;
            }

            .portal-panel {
                flex: 1;
                padding: 0 6%;
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-y: auto;
            }

            .navbar {
                padding: 0 16px;
            }

            .viewport-wrapper {
                flex-direction: column;
                height: auto;
                min-height: calc(100vh - 54px);
            }

            .hero-panel {
                height: 280px;
                flex: none;
            }

            .portal-panel {
                flex: none;
                padding: 40px 20px 80px 20px;
                border-left: none;
                align-items: center;
            }

            .tab-bar,
            .form-scroller {
                max-width: 100%;
            }
        }

        .video_animation_iframe{
            height: 100%;
            width: 100%;
        }

/* ========== */

  :root{
    --ftr-primary: #e6bdb9;
    --ftr-secondary: #0f0202;
    --ftr-text: #fff;
    --ftr-muted: #b8a9a7;
    --ftr-line: rgba(230,189,185,0.15);
    --ftr-pill-bg: rgba(230,189,185,0.08);
  }
 
  .ftr-root, .ftr-root *{box-sizing:border-box; margin:0; padding:0;}
 
  .ftr-root{
    background: var(--ftr-secondary);
    font-family: "Segoe UI", "Noto Sans Bengali", sans-serif;
    color: var(--ftr-text);
    margin-top: 25px;
  }
 
  .ftr-root a{ color:inherit; text-decoration:none; }
 
  .ftr-footer{
    background: linear-gradient(180deg, #140505 0%, var(--ftr-secondary) 100%);
    padding: 24px 24px 24px;
    border-top: 1px solid var(--ftr-line);
  }
 
  .ftr-inner{
    max-width: 1200px;
    margin: 0 auto;
  }
 
  /* ---------- Link columns ---------- */
  .ftr-link-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    /* padding-bottom: 32px; */
    /* border-bottom: 1px solid var(--ftr-line); */
  }
 
  .ftr-col h4{
    color: var(--ftr-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: .3px;
  }
 
  .ftr-col ul{ list-style:none; }
 
  .ftr-col li{ margin-bottom: 11px; }
 
  .ftr-col a{
    color: var(--ftr-muted);
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s ease, transform .2s ease;
  }
 
  .ftr-col a:hover{
    color: var(--ftr-primary);
    transform: translateX(3px);
  }
 
  .ftr-ext-icon{ font-size: 11px; opacity:.7; }
 
  /* ---------- Mobile accordion (hidden on desktop) ---------- */
  .ftr-accordion{ display:none; }
 
  /* ---------- Trust / partner badges row ---------- */
  .ftr-trust-row{
    display:flex;
    flex-wrap:wrap;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--ftr-line);
  }
 
  .ftr-trust-block h5{
    color: var(--ftr-primary);
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
 
  .ftr-badge-row{ display:flex; gap: 10px; flex-wrap: wrap; }
 
  .ftr-badge{
    background: var(--ftr-pill-bg);
    border: 1px solid var(--ftr-line);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: var(--ftr-muted);
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
  }
 
  .ftr-badge b{ color: var(--ftr-primary); }
 
  /* ---------- Socials ---------- */
  .ftr-social-row{
    display:flex;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid var(--ftr-line);
  }
 
  .ftr-social-icon{
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ftr-pill-bg);
    border: 1px solid var(--ftr-line);
    display:flex; align-items:center; justify-content:center;
    font-size: 16px;
    color: var(--ftr-primary);
    transition: background .2s ease, transform .2s ease;
  }
 
  .ftr-social-icon:hover{
    background: var(--ftr-primary);
    color: var(--ftr-secondary);
    transform: translateY(-3px);
  }
 
  /* ---------- SEO text block ---------- */
  .ftr-seo-block{ 
    padding: 28px 0; 
    /* border-bottom: 1px solid var(--ftr-line);  */
}
 
  .ftr-seo-block h2{
    color: var(--ftr-primary);
    font-size: 15px;
    /* margin-bottom: 12px; */
  }
 
  .ftr-seo-text-wrap{
    max-height: 84px;
    overflow: hidden;
    transition: max-height .4s ease;
    position: relative;
  }
 
  .ftr-seo-text-wrap.ftr-expanded{
    max-height: 600px;
  }
 
  .ftr-seo-block p{
    color: var(--ftr-muted);
    font-size: 13px;
    line-height: 1.8;
  }
 
  .ftr-read-more-btn{
    margin-top: 16px;
    background: var(--ftr-pill-bg);
    border: 1px solid var(--ftr-primary);
    color: var(--ftr-primary);
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
  }
 
  .ftr-read-more-btn:hover{ background: var(--ftr-primary); color: var(--ftr-secondary); }
 
  /* ---------- Bottom bar ---------- */
  .ftr-bottom-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap: 16px;
    padding: 24px 0;
  }
 
  .ftr-brand-mark{
    font-size: 22px;
    font-weight: 800;
    color: var(--ftr-primary);
    letter-spacing: 1px;
  }
 
  .ftr-legal-text{ font-size: 12px; color: var(--ftr-muted); line-height:1.6; }
  .ftr-legal-text a{ color: var(--ftr-primary); }
 
  /* ================= MOBILE ================= */
  @media (max-width: 860px){
    .ftr-link-grid{ display:none; }
    .ftr-accordion{ display:block; padding-bottom: 8px; }
 
    .ftr-acc-item{ border-bottom: 1px solid var(--ftr-line); }
 
    .ftr-acc-header{
      width:100%;
      background:none;
      border:none;
      color: var(--ftr-primary);
      font-size: 15px;
      font-weight: 700;
      padding: 16px 4px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      cursor:pointer;
      font-family: inherit;
    }
 
    .ftr-acc-header .ftr-arrow{
      transition: transform .25s ease;
      font-size: 13px;
      color: var(--ftr-primary);
    }
 
    .ftr-acc-item.ftr-open .ftr-acc-header .ftr-arrow{ transform: rotate(180deg); }
 
    .ftr-acc-panel{
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
 
    .ftr-acc-item.ftr-open .ftr-acc-panel{ max-height: 500px; }
 
    .ftr-acc-panel ul{ list-style:none; padding: 0 4px 16px; }
    .ftr-acc-panel li{ margin-bottom: 12px; }
    .ftr-acc-panel a{
      color: var(--ftr-muted);
      font-size: 13.5px;
      display:flex; align-items:center; gap:6px;
    }
 
    .ftr-trust-row{ flex-direction: column; gap: 20px; }
    .ftr-bottom-bar{ flex-direction: column; align-items:flex-start; }
    .ftr-payment-icons{ gap: 8px; }
    .ftr-pay-item{ font-size: 12px; padding: 7px 12px; }
  }

/* ========== */
/* ========== */

.cb-footer {
            background-color: #0f0202; /* Secondary Color */
            position: relative;
            overflow: hidden;
            color: #ffffff; /* Text Color */
            padding: 70px 20px 30px;
            border-top: 2px solid #0f0202;
        }

        /* Ambient Light Beams on Background */
        .cb-footer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 50%;
            height: 200%;
            background: linear-gradient(105deg, rgba(230, 189, 185, 0.15) 0%, rgba(230, 189, 185, 0.05) 30%, transparent 60%);
            transform: rotate(-15deg);
            pointer-events: none;
            z-index: 1;
        }
        .cb-footer::after {
            content: '';
            position: absolute;
            top: -20%;
            left: -5%;
            width: 30%;
            height: 150%;
            background: linear-gradient(100deg, rgba(230, 189, 185, 0.1) 0%, transparent 50%);
            transform: rotate(-10deg);
            pointer-events: none;
            z-index: 1;
        }

        .cb-footer__container {
            position: relative;
            z-index: 2;
            max-width: 1250px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        /* 1. Logo Column */
        .cb-footer__col-logo {
            flex: 1.2;
            min-width: 280px;
            display: flex;
            align-items: center;
        }
        .cb-footer__logo-box {
            display: flex;
            flex-direction: column;
            line-height: 1;
            text-decoration: none;
        }
        .cb-footer__logo-top {
            font-size: 55px;
            font-weight: 800;
            letter-spacing: -1px;
            display: flex;
            align-items: baseline;
        }
        .cb-footer__logo-click {
            color: #01653c;
            margin-right: 12px;
        }
        .cb-footer__logo-baji {
            color: #e6bdb9; /* Primary Color Accent */
            position: relative;
        }


        .cb-footer__logo-baji::after {
            content: '';
            position: absolute;
            bottom: 8px;
            right: -15px;
            width: 12px;
            height: 12px;
            background-color: #e6bdb9;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(230, 189, 185, 0.6);
        }
        
        .cb-footer__logo-bottom {
            font-size: 30px;
            font-weight: 700;
            color: #ffffff;
            margin-top: 5px;
            letter-spacing: 1px;
        }

        /* 2. Contact Column */
        .cb-footer__col-contact {
            flex: 1;
            min-width: 250px;
        }
        .cb-footer__heading {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            color: #ffffff;
        }
        .cb-footer__description {
            font-size: 14px;
            color: #ffffff;
            opacity: 0.8;
            line-height: 1.7;
            margin-bottom: 25px;
            max-width: 90%;
        }
        .cb-footer__socials {
            display: flex;
            gap: 15px;
        }
        .cb-footer__social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(230, 189, 185, 0.1);
            color: #ffffff;
            border-radius: 50%;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 1px solid rgba(230, 189, 185, 0.2);
        }
        .cb-footer__social-btn:hover {
            background-color: #e6bdb9; /* Primary Color */
            color: #0f0202; /* Secondary Color */
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 189, 185, 0.3);
        }

        /* 3. Countries Column */
        .cb-footer__col-countries {
            flex: 1.2;
            min-width: 300px;
        }
        .cb-footer__country-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            row-gap: 18px;
            column-gap: 10px;
        }
        .cb-footer__country-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #ffffff;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        /* Flags Styling */
        .cb-footer__flag {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 3px rgba(0,0,0,0.5);
            flex-shrink: 0;
        }
        .cb-footer__flag--bd { background: #006a4e; }
        .cb-footer__flag--bd::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: #f42a41; border-radius: 50%; }
        
        .cb-footer__flag--in { background: linear-gradient(to bottom, #ff9933 33%, #ffffff 33%, #ffffff 66%, #138808 66%); }
        .cb-footer__flag--in::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 4px; height: 4px; background: #000080; border-radius: 50%; }
        
        .cb-footer__flag--pk { background: #01411c; }
        .cb-footer__flag--pk::after { content: '☾'; color: white; position: absolute; top: 40%; left: 45%; transform: translate(-50%, -50%); font-size: 10px; }
        
        .cb-footer__flag--np { background: #dc143c; border-radius: 0; clip-path: polygon(0 0, 100% 40%, 40% 40%, 100% 100%, 0 100%); width: 15px; height: 20px; }
        
        .cb-footer__flag--sa { background: #006c35; }
        .cb-footer__flag--sa::after { content: '≈'; color: white; position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); font-size: 10px; }
        
        .cb-footer__flag--ae { background: linear-gradient(to bottom, #00732f 33%, #ffffff 33%, #ffffff 66%, #000000 66%); border-left: 5px solid #ff0000; }
        
        .cb-footer__flag--om { background: linear-gradient(to bottom, #ffffff 33%, #ff0000 33%, #ff0000 66%, #008000 66%); border-left: 6px solid #ff0000; }

        /* Bottom Copyright Section */
        .cb-footer__bottom {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(230, 189, 185, 0.15);
        }
        .cb-footer__terms-link {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        .cb-footer__terms-link:hover {
            color: #e6bdb9; /* Primary Color */
        }
        .cb-footer__copyright {
            font-size: 12px;
            color: #ffffff;
            opacity: 0.6;
            font-weight: 400;
        }

        /* ================= Responsive Queries ================= */
        @media (max-width: 992px) {
            .cb-footer__container {
                gap: 50px;
            }
            .cb-footer__col-logo {
                flex-basis: 100%;
                justify-content: center;
                text-align: center;
                margin-bottom: 20px;
            }
            .cb-footer__logo-top {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .cb-footer {
                padding: 50px 5% 20px;
            }
            .cb-footer__col-contact, .cb-footer__col-countries {
                flex-basis: 100%;
                text-align: center;
            }
            .cb-footer__description {
                max-width: 100%;
                margin: 0 auto 20px auto;
            }
            .cb-footer__socials {
                justify-content: center;
            }
            .cb-footer__country-grid {
                max-width: 400px;
                margin: 0 auto;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .cb-footer__logo-top {
                font-size: 40px;
            }
            .cb-footer__logo-bottom {
                font-size: 22px;
            }
            .cb-footer__country-grid {
                gap: 15px;
                justify-content: center;
                text-align: center;
                justify-items: start;
            }
            .cb-footer__country-item {
                justify-content: center;
            }
        }

        @media (max-width: 295px) {
           .cb-footer__country-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                justify-content: center;
                text-align: center;
           }
        }

/* ========== */
/* ========== */


/* ========== */    


  @media (max-width: 370px){
     .phone_hide {
        display: none;
     }
  }


  .video_animation_iframe{
    height: 100%;
    width: 100%;
  }


  .password-field-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--input-bg);
    border-radius: 5px;
    position: relative;
  }

          .pwd-toggle-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            cursor: pointer;
            font-size: 16px;
            transition: color 0.2s;
            user-select: none;
        }

.inp_gp{
    display: flex;
}

.inp_gp_ttt{
    background-color: var(--input-bg);
    border: 1.5px solid transparent;
    border-radius: 5px;
    padding: 13px 15px;
    color: var(--text-white);
    font-size: 14.5px;
    outline: none;
    margin-right: 10px;
}

#step-node-1{
    align-items: flex-start;
}