:root {
  --main-color: #13183E;
  --main2-color: #281E5D;
  --gold-color: #FFDD00;
  --white-color: #fff;
  --bg-greay-color: #fafafa;
  --content-color: #303133;
  --bg-grey: #f5f7fb;

}

.bamika-rate-hero {
  padding: 60px 0;
  background: linear-gradient(to bottom, #00094d, #0f0f0f);
  color: var(--white-color);
}

.rate-hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.rate-hero-info h1 {
  line-height: 1.6;
  margin-bottom: 18px;
}

.rate-hero-info p {
  /* font-size: 15px; */
  line-height: 2;
  opacity: 0.9;
}

.rate-hero-info strong {
  color: var(--gold-color);
  font-weight: 600;
}

.cta-text {
  margin-top: 12px;
  font-weight: 500;
}

.fx-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  position: relative;
}

.fx-converter {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.fx-field label {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 6px;
  display: block;
}

.fx-input-group {
  display: flex;
  gap: 10px;
}

.fx-input-group input {
  flex: 1;
  padding: 13px 14px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
  font-size: 14px;
  transition: 0.3s;
}

.fx-input-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.fx-swap-btn {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 50%;
  margin-top: -7px;
  background: var(--white-color);
  color: var(--main-color);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.fx-swap-btn:hover {
  transform: translateX(50%) rotate(180deg);
}

.fx-select {
  position: relative;
  width: 95px;
  cursor: pointer;
}

.fx-selected {
  padding: 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.fx-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #1b1f50;
  border-radius: 14px;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.fx-select.active .fx-dropdown {
  max-height: 250px;
}

.fx-option {
  padding: 10px;
  text-align: center;
  transition: 0.2s;
}

.fx-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.fx-rate-info {
  margin-top: 22px;
  font-size: 14px;
  opacity: 0.85;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px;
  border-radius: 4px;
}


@media (min-width: 992px) {

  .rate-hero-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .rate-hero-info {
    flex: 1;
  }

  .fx-card {
    flex: 0 0 440px;
  }

  .rate-hero-info h1 {
    font-size: 34px;
  }
}

/* end rates header=============== */

.bamika-breadcrumb {
  padding: 20px 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;

}

/* breadcrumb */
.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
}

.bamika-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  direction: rtl;
  flex-wrap: wrap;
}

.bamika-breadcrumb-list .breadcrumb-item {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.bamika-breadcrumb-list .breadcrumb-item a {
  color: var(--main-color);
  text-decoration: none;
  transition: color .25s ease;
}

.bamika-breadcrumb-list .breadcrumb-item a:hover {
  color: var(--gold-color);
  text-decoration: none;
}

.bamika-breadcrumb-list .breadcrumb-item.active {
  color: var(--content-color);
}

/* separator */
.breadcrumb-separator svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-color);
  stroke-width: 3;
  fill: none;
}

/* social */
.breadcrumb-social-wrapper {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  padding: 5px;
}

/* .social-icon svg {
    width: 18px;
    height: 18px;
    fill: #13183E;
} */

.social-icon:hover {
  background: #13183E;
}

.social-icon:hover svg {
  fill: #FFDD00;
}

/* desktop */
@media (min-width: 992px) {
  .bamika-breadcrumb .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

  }

  .breadcrumb-wrapper {
    justify-content: flex-start;
  }

  .breadcrumb-social-wrapper {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .breadcrumb-social-wrapper {
    display: none;
  }
}

/* end =============== breadcrumb========================================>*/
.bamika-rate-exchange {}

.bamika-rate-wrapper {
  /* max-width:1200px; */
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* TITLE */


.bamika-rate-desc {
  line-height: 1.9;
  color: var(--content-color);
  margin-bottom: 20px;
}

/* CARDS */

.bamika-rate-cards {
  display: grid;
  gap: 18px;
}

.ultra-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 7px rgba(19, 24, 62, .06);
  border: 1px solid rgb(19, 24, 62);
  transition: .35s ease;
}

.ultra-card:hover {
  transform: translateY(-8px);
}

.ultra-card span {
  font-size: 13px;
  color: var(--main2-color);
}

.ultra-card strong {
  display: block;
  font-size: 24px;
  margin-top: 8px;
  color: var(--main-color);
}
.rate-title-bm{
  line-height: 1.5;
}

.ultra-card.highlight {
  border: 1px solid var(--gold-color);
  background: linear-gradient(135deg,
      rgba(255, 221, 0, .10),
      rgba(255, 221, 0, .03));
}

/* SVG */

.bamika-rate-visual {
  display: flex;
  justify-content: center;
}

.ultra-money-svg {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(19, 24, 62, .06);
  border-radius: 10px;
}

.ultra-symbol {
  font-size: 26px;
  fill: var(--gold-color);
  font-weight: bold;
}

/* Floating animation */

.device-left {
  animation: floatLeft 6s ease-in-out infinite;
}

.device-right {
  animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }
}

@media(min-width:992px) {

  .bamika-rate-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .bamika-rate-content {
    flex: 1;
    padding-left: 60px;
  }

  .bamika-rate-visual {
    flex: 1;
  }

  .bamika-rate-title {
    font-size: 36px;
  }

  .bamika-rate-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ultra-card.highlight {
    grid-column: span 2;
  }
}

/* end bamika rates exchange===========================================================> */

.bamika-cta-compact {
  padding: 50px 16px;

}

.bamika-cta-inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--main-color),
      var(--main2-color));
  border-radius: 26px;
  padding: 35px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 25px 60px rgba(19, 24, 62, .15);
}

/* FLOW LINE */

.cta-flow-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flow-line {
  fill: none;
  stroke: rgba(255, 255, 255, .07);
  stroke-width: 2;
}

/* PHONE DECOR */

.cta-phone-decor {
  position: absolute;
  bottom: -10px;
  left: -50px;
  width: 120px;
  opacity: .2;
  pointer-events: none;
  z-index: 99999;
}

.phone-body {
  fill: none;
  stroke: #FFDD00;
  stroke-width: 2;
}

.phone-screen {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
  opacity: .5;
}

.phone-wire {
  fill: none;
  stroke: #FFDD00;
  stroke-width: 2;
  stroke-linecap: round;
}

/* TEXT */

.bamika-cta-text h2 {
  color: var(--gold-color);
  margin-bottom: 14px;
  line-height: 1.2;
}

.bamika-cta-text p {
  color: rgba(255, 255, 255, .85);
  /* font-size:14px; */
  line-height: 1.8;
}

/* BUTTON */

.bamika-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
  box-shadow: 0 15px 30px rgba(37, 211, 102, .35);
  overflow: hidden;
}

.bamika-cta-btn svg {
  width: 18px;
  fill: #fff;
}

.cta-btn-glow {
  position: absolute;
  inset: -2px;
  border-radius: 40px;
  background: radial-gradient(circle,
      rgba(255, 221, 0, .45),
      transparent 70%);
  opacity: .4;
  z-index: 0;
}

.bamika-cta-btn span,
.bamika-cta-btn svg {
  position: relative;
  z-index: 1;
}

.bamika-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, .45);
}

/* DESKTOP */

@media(min-width:768px) {

  .bamika-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px;
  }

  .cta-phone-decor {
    width: 150px;
    opacity: .1;
  }

  .bamika-cta-text h2 {
    font-size: 22px;
  }
}

/* EXTRA SMALL MOBILE */

@media(max-width:380px) {

  .cta-phone-decor {
    width: 90px;
    opacity: .06;
  }

  .bamika-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================end bamika cat */

.bamika-transfer-rate {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.bamika-transfer-rate .container {
  max-width: 1050px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header */
.btr-header {
  text-align: center;
  margin-bottom: 45px;
}

.btr-header h2 {

  color: var(--main-color);
  margin-bottom: 10px;
}

.btr-meta {
  color: var(--content-color);
  opacity: .7;
}

/* Grid */
.btr-cards {
  display: grid;
  gap: 18px;
}

/* Card */
.btr-card {
  position: relative;
  background: var(--bg-greay-color);
  border-radius: 10px;
  padding: 15px 18px;
  border: 1px solid rgba(19, 24, 62, 0.06);
  overflow: hidden;
  transition: 0.25s ease;
}

.btr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(19, 24, 62, 0.08);
}

/* Brand gradient accent */
.btr-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(19, 24, 62, 0.15), rgba(40, 30, 93, 0.05), transparent 70%);
  border-radius: 50%;
}

/* Top */
.btr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.btr-title {
  font-size: 13px;
  color: var(--content-color);
  opacity: .7;
}

.btr-flag {
  font-size: 16px;
}

/* Price */
.btr-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.btr-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--main-color);
}

.btr-currency {
  font-size: 12px;
  color: var(--content-color);
}

/* Change */
.btr-change {
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
}

.btr-change.up {
  color: #1f9d55;
}

/* Mini Chart */
.btr-mini-chart {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 120px;
  height: 40px;
  opacity: .6;
}

.btr-mini-chart polyline {
  fill: none;
  stroke: var(--main2-color);
  stroke-width: 2;
  stroke-linecap: round;
}

/* Description */
.btr-description {
  margin-top: 32px;
  text-align: center;
  line-height: 1.8;
  color: var(--content-color);

}

/* Big Decor */
.btr-decor {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  opacity: 0.05;
}

.btr-decor circle {
  fill: var(--main-color);
}

/* Responsive */
@media (min-width: 768px) {
  .btr-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .btr-header h1 {
    font-size: 28px;
  }
}


/* ================================================end transfer reate section */

.fx-chart-section {

  position: relative;
}

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

.fx-chart-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--main-color);
}

.fx-chart-header p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 25px;
}

/* Tabs */

.fx-tabs {
  display: inline-flex;
  gap: 10px;
  background: rgba(19, 24, 62, 0.04);
  padding: 6px;
  border-radius: 30px;
}

.fx-tabs button {
  border: none;
  background: transparent;
  padding: 6px 18px;
  font-size: 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: .3s;
}

.fx-tabs button.active {
  background: var(--main2-color);
  color: #fff;
}

/* Chart Wrapper */

.fx-chart-wrapper {
  position: relative;
  margin-top: 40px;
  padding: 50px 40px 40px 80px;
  border-radius: 20px;
  border: 1px solid rgba(19, 24, 62, 0.06);
  overflow: hidden;
}

/* Decorative SVG */

.fee-decor {
  position: absolute;
  width: 220px;
  /* height: 300px; */
  top: 62px;
  right: -20px;
  stroke: var(--main2-color);
  stroke-width: 3;
  fill: none;
  opacity: 0.08;
}

/* Axis Left */

.fx-axis-left {
  position: absolute;
  left: 20px;
  top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  font-size: 12px;
  opacity: 0.6;
}

/* Axis Bottom */

.fx-axis-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 10px;
  padding-right: 10px;
  opacity: 0.6;
}

/* Chart */

.fx-chart {
  width: 100%;
  height: 180px;
}

/* Grid */

.fx-grid line {
  stroke: rgba(19, 24, 62, 0.05);
  stroke-width: 0.7;
}

/* Line */

#fxLine {
  stroke: var(--main2-color);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media screen and (max-width: 768px) {
  .fee-decor {
    top: 110px !important;
    right: -25px !important;
  }
}


/* ===================================================================> */



/* ================================ bamika-more-wrapper=================> */

.bamika-more-wrapper{
    box-shadow:0 4px 8px rgba(0,0,0,.06);
    overflow:hidden;
}

/* TOGGLE */

.bamika-more-toggle{
    width:100%;
    background:none;
    border:none;
    padding:18px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
}

.bamika-more-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.bamika-more-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--main2-color);
  transition: all .35s ease;
}

.bamika-more-icon svg {
  width: 100%;
  height: 100%;
}

.bamika-more-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 14px 0;
  transition: .3s;
}

/* Hover Effect نرم */

.bamika-more-toggle:hover .bamika-more-icon {
  transform: translateY(-2px);
  color: var(--main-color);
}

/* وقتی باز میشه */

.bamika-more-toggle.active .bamika-more-icon {
  transform: rotate(180deg);
}


.bamika-more-title{
    font-size:15px;
    font-weight:600;
    color:var(--main-color);
}

/* ARROW */

.bamika-more-arrow{
    width:20px;
    stroke:var(--main-color);
    stroke-width:2;
    fill:none;
    transition:transform .3s ease;
    margin-left: 6px;
}

.bamika-more-wrapper.active .bamika-more-arrow{
    transform:rotate(180deg);
}

/* CONTENT */

.bamika-more-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease, opacity .3s ease;
    opacity:0;
}

.bamika-more-wrapper.active .bamika-more-content{
    max-height:900px;
    opacity:1;
}

.bamika-more-inner{
    padding:0 22px 22px;
    font-size:14px;
    line-height:1.9;
    color:var(--content-color);
}

/* RULES */

.bamika-rules{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    margin:18px 0;
}

.rule{
    background:#fff;
    border-radius:14px;
    padding:14px 16px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.rule.highlight{
    border:1px solid #ffd6d6;
    background:#fff6f6;
}

.badge{
    display:inline-block;
    font-size:12px;
    padding:6px 12px;
    border-radius:20px;
    margin-bottom:6px;
}

.badge.foreign{background:#eef5ff;color:#2f5fff}
.badge.reverse{background:#f0fdf4;color:#0f5132}
.badge.cash{background:#fff0f0;color:#a61b1b}

/* NOTE */

.bamika-note{
    margin-top:16px;
    padding:14px;
    border-radius:12px;
    background:#f5f7fb;
    font-size:13px;
}

/* ============================ */

.bamika-faq-section{
    padding:80px 0;
    background:linear-gradient(180deg,#f8faff,#ffffff);
}

/* HEADER */

.bamika-faq-header{
    text-align:center;
    max-width:680px;
    margin:0 auto 50px;
    position:relative;
}

.bamika-faq-header h2{
    font-size:28px;
    color:var(--main-color);
    margin-bottom:12px;
}

.bamika-faq-header p{
    font-size:15px;
    color:var(--content-color);
    line-height:1.9;
}

.faq-decor{
    position:absolute;
    top:-30px;
    right:50%;
    transform:translateX(50%);
    width:160px;
    stroke:var(--gold-color);
    fill:none;
    stroke-width:2;
    opacity:.25;
}

/* LIST */

.bamika-faq-list{
    max-width:820px;
    margin:0 auto;
}

/* ITEM */

.bamika-faq-item{
    background:#fff;
    border-radius:18px;
    box-shadow:0 4px 6px rgba(0,0,0,.06);
    margin-bottom:16px;
    overflow:hidden;
}

/* QUESTION */

.bamika-faq-question{
    width:100%;
    border:none;
    background:none;
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.bamika-faq-question h3{
    font-size:15px;
    font-weight:600;
    color:var(--main-color);
    text-align:right;
}

/* ICON */

.faq-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#eef2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:var(--main-color);
    transition:transform .3s ease;
}

/* ANSWER */

.bamika-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease, opacity .3s ease;
    opacity:0;
}

.bamika-faq-answer p{
    padding:0 22px 20px;
    font-size:14px;
    line-height:1.9;
    color:var(--content-color);
}

/* ACTIVE */

.bamika-faq-item.active .bamika-faq-answer{
    max-height:400px;
    opacity:1;
}

.bamika-faq-item.active .faq-icon{
    transform:rotate(45deg);
}

/* MOBILE */

@media(max-width:768px){
    .bamika-faq-header h2{font-size:24px}
    .bamika-faq-question h3{font-size:14px}
}
/* ====================================================== */


.currency-info-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.currency-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.currency-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Title */
.currency-title {
    font-size: 28px;
    color: var(--main-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Paragraph */
.currency-content p {
    color: var(--content-color);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 15.5px;
}

/* Info Box */
.currency-box {
    background-color: var(--bg-grey);
    border-right: 4px solid var(--gold-color);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.currency-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--main2-color);
}

.currency-box ul {
    margin: 0;
    padding-right: 18px;
}

.currency-box li {
    margin-bottom: 8px;
    font-size: 14.5px;
    color: var(--content-color);
}

/* Image */
.currency-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 992px) {
    .currency-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .currency-info-section {
        padding: 70px 0;
    }

    .currency-title {
        font-size: 22px;
    }
}


