.calculator-container {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #f9bb1d;
  border-shadow: 0 4px 12px rgba(252, 180, 0, 0.2);
  
}

.tabs {
  display: flex;
  background-color: #f8f9fa;
  border-bottom: 1px solid #f9bb1d;
 
}

.tab {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
  transition: all 0.3s ease;
   font-size: 20px;
}

.tab.active {
  background: #f9bb1d;
  color: black;
  
}

.tab:not(.active):hover {
  background: #e9ecef;
}

.calculator-content {
  padding: 20px;
}

.currency-select-section {
  margin-bottom: 30px;
}

.section-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c3e50;
}

.currency-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-button {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.dropdown-button:hover {
  border-color: #f9bb1d;
}

.dropdown-button.open {
  border-color: #f9bb1d;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #f9bb1d;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item {
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #fff8e7;
}

.flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
}

.exchange-section {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.exchange-box {
  flex: 1;
}

.exchange-label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #6c757d;
 
}

.amount-input-container {
  position: relative;
}

.amount-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: border-color 0.3s ease;
  color: #2c3e50;
}

.amount-input:focus {
  outline: none;
  border-color: #f9bb1d;
}

.currency-flag {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.exchange-rate {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.rate-label {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 8px;
}

.rate-value {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
}

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.delivery-option {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.delivery-option:hover {
  border-color: #f9bb1d;
}

.delivery-option.selected {
  border-color: #f9bb1d;
  background-color: #fff8e7;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.option-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  position: relative;
}

.delivery-option.selected .option-checkbox {
  background-color: #f9bb1d;
  border-color: #f9bb1d;
}

.delivery-option.selected .option-checkbox::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.option-icon {
  width: 24px;
  height: 24px;
}

.option-title {
  font-weight: 600;
  color: #2c3e50;
}

.option-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

.cash-option {
  border: 2px solid #f9bb1d;
  background-color: #fff8e7;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  min-height: 150px;
}

.cash-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.cash-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
}

.get-started-btn {
  width: 100%;
  padding: 16px;
}
/*
        .get-started-btn:hover {
            background: linear-gradient(135deg, #c82333, #bd2130);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220,53,69,0.3);
        } */

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.trust-badge {
  height: 32px;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #6c757d;
  transition: transform 0.3s ease;
}

.dropdown-button.open .arrow-down {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .exchange-section {
    flex-direction: column;
  }

  .delivery-options {
    grid-template-columns: 1fr;
  }
  .tab{
    font-size: 16px;
  }

  .calculator-container {
   
  }

  .calculator-content {
    padding: 20px;
  }


  .exchange-rate{
    flex-direction: row;
    gap: 10px;
  }
  .rate-label{
    font-size: 12px;
  }
  .rate-value{
    font-size: 16px;
  }
}

@media (max-width: 1200px) and (min-width: 1024px) {
  .exchange-rate {
    flex-direction: row;
    gap: 10px;
  }

  .exchange-label {
    font-size: 12px;
  }

  .rate-label {
    font-size: 12px;
  }

  .rate-value {
    font-size: 16px;
  }
}

.search-input {
    width: calc(100% - 40px);
    padding: 10px 20px;
    margin: 10px 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
}

    .search-input:focus {
        outline: none;
        border-color: #f9bb1d;
    }

.dropdown-content.show {
    display: flex;
    flex-direction: column;
}

.dropdown-item.no-hover {
    pointer-events: none;
    background-color: transparent !important;
    text-align: center;
    color: #999;
    padding: 20px;
}
